The BiometricAuth.create function requires an activity as parameter which is typed as the androidx.appcompat.app.AppCompatActivity activity. Looking through the source it seems the only thing needed from the specific activity is the supportFragmentManager which is provided through the androidx.fragment.app.FragmentActivity super class. Therefore it should not be required to use AppCompatActivity instead of FragmentActivity for this parameter.
The
BiometricAuth.create
function requires an activity as parameter which is typed as theandroidx.appcompat.app.AppCompatActivity
activity. Looking through the source it seems the only thing needed from the specific activity is thesupportFragmentManager
which is provided through theandroidx.fragment.app.FragmentActivity
super class. Therefore it should not be required to useAppCompatActivity
instead ofFragmentActivity
for this parameter.