Reply To: Issue with url on android

Welcome! Forums Unity Plugins In-App Web Browser Issue with url on android Reply To: Issue with url on android

#175
PiotrPiotr
Keymaster

Hey,

Thanks for posting question here.
I spent some time on it and I think I know what’s going on.
Your website requires location permissions which isn’t supported out of the box.

I’ve managed to open your website with some changes to the source code.
You have to do two things:
– add this permission to your manifest file
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
If you do not know how to do it, it’s explained in readme file.

– replace InAppBrowser.jar from Plugins/Android with a file I sent on your email

Let me know if that worked for you.