Mainifest file
<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE">
</uses-permission>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true" />
<application
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/hero3"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name="info.food360.nikhil.splash"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="info.food360.nikhil.MainActivity"
android:windowSoftInputMode="adjustPan|adjustResize"
android:theme="@style/AppTheme.NoActionBar"/>
<activity
android:name="info.food360.nikhil.DesActivity"
android:configChanges="orientation|screenSize"
android:label="DestinationActivity" />
<activity android:name="info.food360.nikhil.Suggestion" />
<activity android:name="info.food360.nikhil.LocationWork" />
<activity android:name="info.food360.nikhil.logicBehind"></activity>
</application>
my app need location permission I thought google play store would ask at the time of downloading but user have to set location manually.what is the way that google play store should ask what should I add in my code?