0

I need to provide the permission for android M.what are the needs need to be used to provide the permission in service .

pradeep
  • 307
  • 1
  • 8
  • 1
    Possible duplicate of [Permission issues for location in android Marshmallow applicaton](http://stackoverflow.com/questions/33579280/permission-issues-for-location-in-android-marshmallow-applicaton) – Dr.jacky Feb 28 '16 at 13:29

1 Answers1

0

Basic location permissions:

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
giannisf
  • 2,479
  • 1
  • 17
  • 29
  • The following permission are working below Api22 .The app gets crashed for Api 23.I need to know the structure and the method to provide permission for Api 23.Thanks ... – pradeep Feb 29 '16 at 10:33