public override void OnNextPressed()
        {
            try
            {
                base.OnNextPressed();

                var index = slidesNumber;
                if (count == 1)
                {
                    // Check if we're running on Android 5.0 or higher
                    if ((int)Build.VERSION.SdkInt < 23)
                    {
                    }
                    else
                    {
                        RequestPermissions(new[]
                        {
                            Manifest.Permission.ReadContacts,
                            Manifest.Permission.ReadPhoneNumbers,
                            Manifest.Permission.Camera
                        }, 208);
                    }

                    Task.Run(() =>
                    {
                        //Get data profile
                        var data = API_Request.Get_MyProfileData_Api(this).ConfigureAwait(false);
                    });

                    count++;
                }
                else if (count == 2)
                {
                    count++;
                }
                else if (count == 3)
                {
                    // Check if we're running on Android 5.0 or higher
                    if ((int)Build.VERSION.SdkInt < 23)
                    {
                    }
                    else
                    {
                        RequestPermissions(new[]
                        {
                            Manifest.Permission.AccessFineLocation,
                            Manifest.Permission.AccessCoarseLocation
                        }, 208);
                    }

                    Task.Run(() =>
                    {
                        API_Request.is_Friend = true;
                        var data = API_Request.Get_users_friends_Async("").ConfigureAwait(false);
                    });

                    count++;

                    IMethods.AddShortcut();
                }
                else if (count == 4)
                {
                    count++;
                }
            }
            catch (Exception e)
            {
                Crashes.TrackError(e);
            }
        }