Near Me isn't working in mobile app.

Hello there!  When I do the near me search for users, it just sits there there and hangs up with the wheel turning.  Has anyone else had this issue?  Any ideas for a fix?  My website is https://lezfindr.com

Quote · 26 Apr 2017

https://www.boonex.com/forums/topic/location-search-in-Dolphin-app-on-iOS-10-2-1-.htm#281947

Rules → http://www.boonex.com/terms
Quote · 1 May 2017

Hi,

ANDROID

For versions of Android 6.0+, the code must be modified to ask for "permissions." For example, for localization, making photos, making videos, the application requires permissions that the user must accept.

Example:

  • In Manifest <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  • In Activity

int permissionCheck = ContextCompat.checkSelfPermission(this,Manifest.permission.WRITE_EXTERNAL_STORAGE);

if (ContextCompat.checkSelfPermission(this,

                Manifest.permission.WRITE_EXTERNAL_STORAGE)

                != PackageManager.PERMISSION_GRANTED) {

            if (ActivityCompat.shouldShowRequestPermissionRationale(this,

                    Manifest.permission.WRITE_EXTERNAL_STORAGE)) {

            } else {

                ActivityCompat.requestPermissions(this,

                        new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},

                        MY_PERMISSIONS_REQUEST_WRITE_EXTERNAL_STORAGE);

            }

 

        }

 

And the code continues ...

 

iOS


In Apple it happens the same, but in this case it is added in the file Info.plist


I hope that help you. Kind Regards,

 


Quote · 6 Jul 2017
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.