-
Notifications
You must be signed in to change notification settings - Fork 201
Open
Description
I implemented SMS autofill in my application. It works perfectly in debug mode but does not receive a signature in SMS in release mode.
Here is the relevant code snippet:
class _LoginWidgetState extends State<LoginWidget> with CodeAutoFill {
@override
void initState() {
super.initState();
listenForCode();
SmsAutoFill().getAppSignature.then((signature) {
// no code here
});
}
@override
void codeUpdated() {
loginCompleted(code);
}
@override
void dispose() {
cancel();
unregisterListener();
super.dispose();
}
Metadata
Metadata
Assignees
Labels
No labels