Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lint CallNeedsPermission on same named function #602

Closed
repitch opened this issue Mar 22, 2019 · 5 comments
Closed

lint CallNeedsPermission on same named function #602

repitch opened this issue Mar 22, 2019 · 5 comments

Comments

@repitch
Copy link

repitch commented Mar 22, 2019

#502 - is almost the same except now both classes are annotated with @RuntimePermissions

Overview

I have two classes (i.e. Activities), both annotated with @RuntimePermissions, both contains same named function, but the first one is annotated with @NeedsPermission, the second one - is not

// MainActivity.kt

@RuntimePermissions
class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        someFunWithPermissionCheck()
    }

    @NeedsPermission(Manifest.permission.CAMERA)
    fun someFun() {
        Toast.makeText(this, "someFun!", Toast.LENGTH_SHORT).show()
    }
}

// SecondActivity.kt

@RuntimePermissions
class SecondActivity: AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        otherFunWithPermissionCheck()
        someFun()
    }

    // no annotation here
    fun someFun() {
        Toast.makeText(this, "someFun without permission", Toast.LENGTH_SHORT).show()
    }

    @NeedsPermission(Manifest.permission.CAMERA)
    fun otherFun() {
        Toast.makeText(this, "reallyRequiresPermission", Toast.LENGTH_SHORT).show()
    }
}

Both classes has someFun(), but the second one is not annotated, so it shouldn't be treated as an error

Expected

Lint will not show any error

Actual

/SecondActivity.kt:21: Error: Trying to access permission-protected method directly [CallNeedsPermission]
someFun()

Environment

  • Library version: 4.3.0

Reproducible steps

  • ./gradlew lint
@hotchemi
Copy link
Member

Thank you for your report! Would you mind open a pull request? You can reproduce the bug in CallNeedsPermissionDetectorTest and fix the logic at CallNeedsPermissionDetector 😃


public final class CallNeedsPermissionDetector extends Detector implements Detector.UastScanner {

@hotchemi
Copy link
Member

@repitch 👀

@repitch
Copy link
Author

repitch commented Mar 25, 2019

@hotchemi I'll try to fix it and open a PR as soon as find some free time, maybe on the upcoming weekends!

@eschoenawa
Copy link

I am getting a similar problem with two methods in the same class, one annotated, one is not. One of the methods has a boolean parameter. So this doesn't only affect methods in seperate classes, but also ones with different parameter counts.

@hotchemi
Copy link
Member

The original issue was resolved with #627 but #602 (comment) is kind of difficult to address...🤔Anyway let me create another issue for tracking.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants