permission.READ_CONTACTS does not seem to work

前端 未结 6 2048
一向
一向 2021-02-18 17:10

I\'m working on a simple app that browses through the user\'s contacts. Unfortunately I keep getting the following error:

java.lang.SecurityException: Permission         


        
6条回答
  •  执念已碎
    2021-02-18 17:46

    Try this in your on create method

    ActivityCompat.requestPermissions(this,new String[]{Manifest.permission.READ_CONTACTS},1);
    

提交回复
热议问题