react native DeviceCredentialHandlerTheme not found code example

Example: style/DeviceCredentialHandlerTheme) not found.

YouAPP name/android/app/src/main/AndroidManifest.xml

check the arribute name
<application android:theme="@style/Theme.AppCompat">

chage with this 
android:theme="@style/DeviceCredentialHandlerTheme"


and check the app theme name in 

YouAPP name/android/app/src/main/res/values/styles.xml

<style name="DeviceCredentialHandlerTheme" parent="Theme.AppCompat.Light.NoActionBar">


chnage the name to error theme name its works for me

try to run yarn android

Tags:

Misc Example