60 questions
1
vote
0
answers
45
views
Provide `ViewStructure` in a Jetpack Compose view
I want to add autofill to an Android application that can connect to self-hosted services. This app uses Jetpack Compose to define interfaces. According to this answer, autofill services are not ...
0
votes
2
answers
330
views
Android webview Autofill Manager Issue
I'm seeing a bug where selecting to autofill passwords/credit card info from keyboard shortcuts into a webview is not working, the autofilled data is not set on the input. This is ONLY occurring with ...
2
votes
0
answers
130
views
Flutter Autofill not working with Android biometric verification
So, I have been having this issue for a while related to auto filling fields, below is a sample code:
TextFormField(
controller: _email,
enableSuggestions: true,
autocorrect: false,
...
1
vote
3
answers
3k
views
Flutter AutoFillGroup/Autofill hints not working
My code to show and submit login form:
class LoginWidget extends StatelessWidget {
const LoginWidget({
super.key,
});
@override
Widget build(BuildContext context) {
final citiesLoaded =...
0
votes
1
answer
256
views
Auto submit autofill entry on android app
In my Android app, I would like to automatically submit (i.e., click on the login button) when the user taps on the saved credentials (e-mail + passoword) that appear on top of the Google keyboard. Is ...
2
votes
3
answers
1k
views
How to stop dialog save password to Google on Android 14?
Since Android 8 to 13, when you want to disable Password Manager's saving password we only need to include this:
android:importantForAutofill="no"
But it seems something changed in Android ...
2
votes
0
answers
781
views
android, kotlin - How to create an Autofill Service?
I'm trying to create password manager autofilling login and password.
Basing on Build autofill services I'm trying to begin with basic-level functionalities of app(providing autofill data inputs to ...
1
vote
1
answer
974
views
Autofill suggested emails from system/Google account with keyboard for email text field?
I know we can save email and password (Android/Google password manager/ auto fill service) if signing in the app and keyboard can suggest saved accounts
But if a user installs the app for the first ...
0
votes
2
answers
447
views
Filling data on text field of another app Android
So I'm trying to get what the user is typing on another app and if it matches my pre defined string, I need to fill it with something inside that text field without them having to open my app.
I tried ...
1
vote
0
answers
292
views
Autofill in Android proposes the wrong field (email instead of the phone). Filtering of the autofill combinations
I have a signIn in the Android app by the email and password combination. After a month of the using I have a list of this combinations in the "Passwords & accounts" list on my device.
...
1
vote
0
answers
77
views
Auto Login WebView AndroidStudio
i have try this code and its work for auto fill fields , but whene i click for login buton the fillds of ema and pw become impty
public void onPageFinished(WebView view, String url) {
super....
2
votes
1
answer
216
views
How can I get the AutoFillHint/HintText/Text from another app structure?
I'm creating an AutoFillService on my android password management app (using java).
I have followed this turotial
While my service is trying to get the content of another app, it seems like it can't ...
3
votes
1
answer
2k
views
How to trigger Google Password Manager in native XML view to show popup to save user's password to use later in AutofillService?
I have a usual screen with "email" and "password" EditText fields. I have marked my fields with autofillHints, so that Android AutofillService could propose user already saved ...
7
votes
1
answer
4k
views
React Native - Unable to get Android sms-otp autofill to work
I am using 0.66 (and also tried 0.68rc4) and am unable to get the autofill for otp to work on Android. Here is the component I have
<Input
...
autoComplete="sms-otp"
...
/>
I ...
9
votes
2
answers
3k
views
Crash in AutofillManager NPE: trying to invoke virtual method containsKey(java.lang.String)' on a null object reference
I have no direct traces of using AutofillManager in my project but still getting this crash in crash analytics. How we can handle this?
Crash Logs-
java.lang.NullPointerException: Attempt to invoke ...
2
votes
1
answer
2k
views
Password manager autofill
how to make an autofill app like dashlane, or lastpass on android studio. I want to make an autofill app, example facebook, It can autofill my login credentials on facebook. I want my password manager ...
0
votes
1
answer
1k
views
How to detect if Autofill is enabled for this app
I set the autofill service to be using my android app service at Settings > Additional Settings > Language & input > Autofill service.
Now in my app is there a way to check if the ...
2
votes
0
answers
169
views
Don't show android native autofill save dialog if credentials already there in password manager
I am seeing android autofill native save password dialog again and again even credentials are same. how to avoid it?
Show autofill native save password dialog only if credentials are different
Use ...
2
votes
0
answers
419
views
Android webview autofill related crash
I have been using android webview to load my PWA app. I have been getting lots of similar crashes on production app regarding webview autofill on crashlytics but unable to reproduce it. The stack ...
2
votes
1
answer
740
views
Autofill Service isn't shown in setting autofill service list in android
I'm trying to develop a simple app that uses Autofill Framework in Android Oreo for autofill email in the other apps. I just clone, build and run this project
https://github.com/googlearchive/android-...
0
votes
1
answer
524
views
setAuthentication method doesn't work with autofill
I'm using Autofill service in my app. But there are two problems with that:
Presentation view is blinking while clicking on the username/passwords fields. Sometimes it appears but sometimes no.
When ...
12
votes
3
answers
5k
views
How to integrate autofill in Jetpack Compose
I want to provide some autofill functionality in my app (email and password) that is written completely using Jetpack compose. I came across this blog post and this demo code which I both tried out. ...
3
votes
1
answer
2k
views
Android Autofill Phone Number not appearing, only showing 'Passwords'
I am trying to utilize the Android's Autofill feature in an EditText field to give the user the suggestion of using the phone number associated with their device/account at the top of the keyboard as ...
2
votes
2
answers
2k
views
Android How can I detect autofill pressed?
I use AutofillManager https://developer.android.com/reference/android/view/autofill/AutofillManager and can't understand how can I detect is user enter value himself or user select any autofill option....
0
votes
0
answers
52
views
Is there a way to prevent Show Password functionality in another Android app?
I am designing an android autofill service, and one of its features is that it shouldn't allow the user to see the password content it fills in any app because the password doesn't originate from the ...
6
votes
0
answers
303
views
Android - Google autofill not showing update password on change password screen (password fields only)
We've an app with login/signup views.
When a user creates a new account or login the Android autofill framework asks to save the username and password.
Now once the user logs-in - We've a password ...
1
vote
0
answers
227
views
Using autofill framework how can i save user details that I can show as hint when user login again
I am trying to save user phone, email, password, update password using android autofill framework.
I am using different fragments for all the above values. I tried to forcefully save values using ...
2
votes
1
answer
685
views
How to prompt for autofll in another app?
I am making a password manager, in which i am storing passwords of different user.
How do i prompt him to fill data/credentials from our database.
like how different password protector is doing it.
I ...
12
votes
3
answers
9k
views
How to use Android autofill API
I've built a little browser using the android webview component and am looking to integrate password/credential manager support using the Android AutoFill API.
I've read the docs but am completely ...
3
votes
2
answers
7k
views
Disable Android autofill verification codes
I have an Android application that uses phone code verification to sign in, using one EditText to allow the user to enter the 4 digits code, I do not have an implementation of SMS Retriever API nor ...
3
votes
1
answer
329
views
While Google's SMS one-time code autofill service, what does API_NOT_AVAILABLE status mean?
I am trying to implement SMS one-time code autofill service.
SmsCodeAutofillClient smsCodeAutofillClient = SmsCodeRetriever.getAutofillClient(this);
Task<Void> voidTask = ...
2
votes
0
answers
420
views
java.lang.NoClassDefFoundError: Failed resolution of: Landroid/view/autofill/AutofillManager$AutofillCallback
I’m getting the same error on a lot of my tests:
java.lang.NoClassDefFoundError: Failed resolution of:
Landroid/view/autofill/AutofillManager$AutofillCallback;
Basically my code introduces android....
0
votes
1
answer
64
views
Why does it take so long to have the IDE update from what I paste in?
I have code where I have defined over 350+ variables to be used in a 350+ if else statement.
My question is this: "why does my code take over 30 seconds to update what I paste in with the auto-fill ...
7
votes
0
answers
659
views
Autofill in chrome using Autofill Service Android
In Pie & Above versions, Android introduced the chrome browser autofill using the Autofill service as per the doc.
But i tried debug the Facebook's login form in Chrome Browser for the ...
1
vote
0
answers
88
views
Autofill in Android Oreo not working when app handles localization
I can't seem to make the Autofill to show for an application that handles its own localization.
For some reason, if attachBaseContext is modified to configure localized resources, the Autofill simply ...
3
votes
0
answers
525
views
Google Autofill Service for Android saves password under wrong domain
I've developed a registration flow for my Android application that saves the new user's email address and password with the user's preferred Autofill Service. However, when using the Google Autofill ...
8
votes
3
answers
2k
views
Save for autofill dialog not showing up
I have an activity that shows username UI, after entering that and tapping on continue button shows the enter password UI. On entering password and tapping on login button finishes the current ...
0
votes
0
answers
211
views
Edittext auto fill overlay of activity is visible over fragment
I'm facing issue with auto-fill functionality,
If an auto-fill overlay is visible in activity and if i open a fragment then the auto-fill overlay is visible over fragment as well.
If i have an email ...
1
vote
2
answers
528
views
Google smart lock showing all my phone accounts in an app instead the ones previously used
I'm developing an app and 've implemented smart lock.
The problem is that at first, having several google accounts in my phone, when I press login, a smart lock modal appears saying.. Continue with.. ...
1
vote
2
answers
2k
views
Restrict/remove autofill option on long press of Edit text
I have an edit text and on long press on it i dont want autofill option to be included along side copy ,paste ,select etc
I tried doing the below code which in turn didn't help me
if (Build.VERSION....
5
votes
0
answers
160
views
Read Properties of Input Field Displayed in Browser
Using the soft keyboard API's I can get the properties of an android EditText using the following code example
EditorInfo ei = getCurrentInputEditorInfo();
Log.i(TAG, "found field hintText = " + ei....
1
vote
1
answer
490
views
Allow to disable Oreo Autofill service for a package
I am developer of a password manager app which provides an Android Autofill service (Android 8+).
Some users requested that it should be possible to disable this service on a per-target-app basis. In ...
0
votes
1
answer
593
views
how to completely disable autofill in android
I had problem with AutoFill in android and it cause
java.lang.SecurityException: Permission Denial: null asks to run as user 5 but is calling from user 0; this requires android.permission....
3
votes
1
answer
855
views
TransactionTooLargeException with AutofillManager
I just got a strange stacktrace from a user:
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=42, result=-1, data=Intent { dat=content://com.android.providers.media....
0
votes
0
answers
333
views
Start Activity with TextInputLayout throw SecurityException
When trying to Start Activity With TextInputLayout it throw SecurityException.
I check if I remove All TextInputLayout it works just fine.
I look every where there was a hint about AutoFill framework ...
2
votes
3
answers
3k
views
Autofill Framework disabled in app, but enabled in other apps
I ran into problems when trying to use Autofill Framework for the login fragment, it does not show the save popup. I placed android:autofillHints attribute on both text fields, then I tried android:...
10
votes
0
answers
1k
views
AutofillManager WebView Input crash on Android 8.1
I have a bug with autofill manager, when I focus any input - it throws an exception:
W/System.err: java.lang.NullPointerException: activityToken
W/System.err: at android.os.Parcel.readException(...
1
vote
1
answer
415
views
Trigger Autofill Service in login page of Chrome Browser
I can able to get the Autofill Service event in facebook app's login page for OREO and above OS versions.
@Override
public void onFillRequest(@NonNull FillRequest request, @NonNull CancellationSignal ...
7
votes
1
answer
4k
views
Oreo - Autofill Framework background highlight color
Is it possible to change EditText autofill highlight color? By default it has yellow background that may be incompatible with application design.
0
votes
1
answer
112
views
why do Google apps have TYPE_TEXT_VARIATION_PASSWORD in non-password input fields
My app is providing an Android Oreo Auto-fill service. It tries to detect potential credential forms, either by using the Autofill hints, or if these are not present (which is the case for most ...