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
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 |
Rules → http://www.boonex.com/terms |
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:
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
I hope that help you. Kind Regards,
|