После успешного входа в систему я получаю опцию «Открыть с помощью» в пользовательских вкладках - PullRequest
0 голосов
/ 01 марта 2019

Я использую CustomTabsIntent для запуска социального входа с использованием Auth0., Но после успешного входа у меня есть 2 варианта запуска приложения.

Это то, что я получаю после успешного входа и регистрации`

enter image description here

Это мой код.

 final Uri.Builder uriBuilder = new Uri.Builder();
        uriBuilder.scheme("https")
                .authority(getString(R.string.com_auth0_domain))
                .appendPath("authorize")
                .appendQueryParameter("code_challenge_method", "S256")
                .appendQueryParameter("code_challenge", codeChallenge)
                .appendQueryParameter("audience", getString(R.string.auth0_audience))
                .appendQueryParameter("scope", "openid profile offline_access email")
                .appendQueryParameter("client_id", getString(R.string.com_auth0_client_id))
                .appendQueryParameter("redirect_uri", getString(R.string.auth0_callback))
                .appendQueryParameter("response_type", "code")
                .appendQueryParameter("prompt", "login")
                .appendQueryParameter("connection", connection);

        CustomTabsIntent customTabsIntent = new CustomTabsIntent.Builder()
                .addDefaultShareMenuItem()
                .setToolbarColor(this.getResources()
                        .getColor(R.color.colorPrimary))
                .setShowTitle(true)
                .build();

        openUrlForResult(customTabsIntent, uriBuilder.build().toString(), 1001);`

Мне нужно знать, почему отображаются 2 варианта запуска одного и того же приложения,

...