X1nto / Mauth

A Material You Two-factor Authentication app
GNU General Public License v3.0
399 stars 14 forks source link

Handle otpauth:// URIs #28

Closed yarml closed 1 year ago

yarml commented 1 year ago
yarml commented 1 year ago

This also creates a problem whenever onCreate() is called a second time, for example when the screen is rotated, the add account screen is displayed again.

X1nto commented 1 year ago

This also creates a problem whenever onCreate() is called a second time, for example when the screen is rotated, the add account screen is displayed again.

Which is why moving to a ViewModel is a good idea, since ViewModels don't recreate on configuration changes (such as screen rotate)

X1nto commented 1 year ago

Closing in favor of #30