93 questions
2
votes
0
answers
129
views
Cookies are not set with CustomTabsIntent
I'm trying to set cookies for CustomTabsIntent:
val intent = CustomTabsIntent.Builder(mCustomTabsSession)
.setShareIdentityEnabled(true)
.build()
val headers = Bundle()
...
0
votes
0
answers
49
views
How to Manage Cookies?
I’m using the following code to launch a login page in my Flutter app via native Android code using CustomTabsIntent:
val customTabsIntent = CustomTabsIntent.Builder().build()
customTabsIntent....
0
votes
0
answers
115
views
what we need to know the risk of using Android Custom Tab
We are considering using the Android Custom tab for our mobile application. We have almost completed development and are now doing our test. During our testing, one of our team members was concerned ...
-1
votes
1
answer
207
views
Is there an approach to reuse the same Chrome custom tab that holds the same URL?
I am using the following lib: androidx.browser:browser:1.5.0
Current scenario:
My app contains a button that, when clicked, launches a URL using a Chrome custom tab. The issue is that when the user ...
0
votes
1
answer
751
views
AppAuth Android 14 issue Communication problems between AuthorizationManagementActivity and RedirectUriReceiverActivity
Version: 0.11.1
Integration: native Kotlin
Identity provider: Google
My Problem is only on Android 14 devices. API 34.
I have Activity A and B.
Activity B has it own taskAffinity, and im launching the ...
6
votes
0
answers
401
views
PackageManager.queryIntentActivities returns empty on random devices
I'm trying to gather the available browsers and specifically the customtab compatible browsers on an android device.
The weird behavior is that on some devices, for instance two galaxy S20FE, one will ...
0
votes
1
answer
571
views
Android WebView vs CustomTabs
As a part of my project, I'm expected to load a webpage using a web view within the app.
I could either use WebView or CustomTabs but the favoured option was to go with WebView for the UI ...
0
votes
1
answer
1k
views
Android Chrome CustomTabsIntent customize toolbar design
As I'm facing some issue with WebView, I am attempting to utilize Chrome Custom Tabs (CustomTabsIntent). However, I encounter difficulties in customizing its toolbar. Specifically, I aim to remove the ...
1
vote
1
answer
210
views
Custom TabLayout like in Samsung Music App
The default TabLayout with mode set to scrollable gives the following:
The position of the selected tab indicator is not fixed. If the first tab is selected, tab indicator is at the left most side of ...
0
votes
1
answer
917
views
Adding cookies to Custom Tabs in Android
I'm trying to pass a cookie to custom tabs like in webview so that the user doesn't have to login, I've seen other questions but all of them were 6+ years old so I'm wondering if it's possible to do ...
0
votes
1
answer
846
views
How to get "open with" prompt for Custom tabs instead of always opens up in the default browser
Custom Tabs always opens links in the default browser and beats the purpose of using it for SSO providers. My enterprise has a browser application that can provide sso functionality but when the other ...
1
vote
0
answers
569
views
Android CustomTabs bindCustomTabsService and onCustomTabsServiceConnected never called
I am trying to setup CustomTabs in an activity; however, the bindCustomTabsService method never calls onCustomTabsServiceConnected. What am I missing?
override fun onCreate(savedInstanceState: Bundle?)...
9
votes
1
answer
4k
views
Any browser doesn't support custom tabs feature?
I tried opera browser ,opera mini, UC mini, duckduckgo all support custom tabs,
just wanna know in 2022 is there any browser still doesn't support custom tabs?
1
vote
1
answer
2k
views
Error on load Chrome Custom Tab in Android 11
Chrome custom tab work in every other device. Only error in Android 11.
Here is my code how I put I code in my app.
ImageView adCustomBannerImage= findViewById(R.id.adCustomBannerImage);
...
0
votes
0
answers
43
views
Launch Activity while parent is in the Background
I have an Activity A which starts doing some processing in its view model, meanwhile it launches a CustomTab which puts A in the background, when the viewmodel finishes its processing it requires to ...