Hi, i am using accompanist permissions ```@Composa...
# compose
b
Hi, i am using accompanist permissions
Copy code
@Composable
fun MyComposable() {
    val cameraPermissionState = rememberPermissionState(Manifest.permission.READ_CONTACTS)
}
I am getting the following error `
Copy code
java.lang.IllegalStateException: Permissions should be called in the context of an Activity
`
c
Where do you call
MyComposable()
? Are you really outside of an
Activity
?
b
MyComposable
is not called directly from from the Activity