Cannot resolve Manifest.permission.ACCESS_FINE_LOCATION

前端 未结 12 1020
天涯浪人
天涯浪人 2020-12-04 23:13

When adding permissions to my manifest file, the below xml works.

 
12条回答
  •  南笙
    南笙 (楼主)
    2020-12-05 00:14

    Change

    new String[]{Manifest.permission.ACCESS_FINE_LOCATION}
    

    To this

    new String[]{android.Manifest.permission.ACCESS_FINE_LOCATION}
    

    Your problem will be resolved.

提交回复
热议问题