Use “ACCESS_FINE_LOCATION” only as permission name.
The desired result (popping up the location permission dialogue) will come only after building apk, not in companion.
In case of location sensor, I faced that in which screen it’s imported (if location disabled at first) it will pop up. If denied then on any event also it will pop up until request granted.
We are talking about runtime permissions here, this means Android versions with API>22. On all these Android versions the permission has to be asked and granted manually. For Android API<23 the permission will be asked and granted at install-time.
Decompile the APK, edit the Manifest and insert / paste this line into the Manifest:
“android.permission.ACCESS_FINE_LOCATION”
But does it make any sense if it is not needed?
I deleted old app from the phone and now it does not ask anymore. But the location sensor of kodular is very slow and is not showing the correct location.
do you have the same?