Bug P2
Status Update
Comments
ki...@google.com <ki...@google.com> #2
error instantiating androidx.tracing.perfetto.StartupTracingConfigStoreIsEnabledGate
This looks like a minification issue
- Are you using either minification of your app, or in your instrumented test? If so, can you try adding a keep rule for that class?
- Is this class present in your apk's dex files, if you open the apk in studio? (if this is an instrumented test, check both your app and test)
- Are you depending on
androidx.compose.runtime:runtime-tracing
viaandroidTestImplementation
orimplementation
, and from what type of module? - What version of AGP are you using? I would expect the
would mean the library doesn't need an explicit keep rule, but it could bemanifest entry for this class depending on your AGP version / how the dependency is declared (fixed in AGP 8.6 canary 5, but a keep rule should work around it)b/328649293
Edit: disregard, I doubt Robolectric is using any of the minification codepaths.
sk...@googlemail.com <sk...@googlemail.com> #3
- Let me check
- Using
implementation
and it's added at the project level so all modules using compose are getting it - I'm on
8.1.1
ki...@google.com <ki...@google.com> #4
There was a misconfiguration issue on that component. That has been fixed, and this bug is now reassigned there.
sk...@googlemail.com <sk...@googlemail.com> #5
Are you able to let me know in which library/component the fix will be ? Alpha/Beta/Release Candidate ?
androidx.appcompat:appcompat:1.2.0 com.google.android.material:material:1.1.0 androidx.autofill:autofill:1.0.0 Regards Stephan
Description
I like to use autofill for smsOTPCode and use the library's
For the right hint I use androidx.autofill.HintConstants.AUTOFILL_HINT_SMS_OTP
I have tried different combination with
No one works. I send an SMS with 'code 1234' but I never get the '1234' in my TextInputEditText.
In some combination I get the receiver phone number as autofill which is total wrong. But in this combination I am able the "code 1234" form the SMS.
If I add android:autofillHints="smsOTPCode" TextInputEditText
I get the bubble "Autofill code from Message" but if I press the bubble, there is no message (code 1234 or 1234) in my TextInputEditText.
Any suggestion to work with AUTOFILL_HINT_SMS_OTP ?
Regards Stephan