showing results for - "react native device credential handler theme not found"
Niclas
29 Jun 2018
1in your style.xml define like thos
2android/app/src/main/res/values/styles.xml
3
4<style name="DeviceCredentialHandlerTheme" >
5    <item name="colorAccent">@color/colorPrimary</item>
6    <item name="android:textColorPrimary">@color/TextColor</item>
7 </style>
8
9
10@color/colorPrimary &  @color/TextColor
11
12defines in 
13android/app/src/main/res/values/colors.xml
14
15
16like this example
17
18
19<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
20<resources>
21  <color name="iconBackground">#FFFFFF</color>
22  <color name="splashscreen_background">#F2F0F0</color>
23  <color name="colorPrimary">#FEAC00</color>
24  <color name="TextColor">#FFFF</color>
25</resources>
26