React native attem to invoke method android.content.resources
react native attem to invoke method android.content.resources
I had this problem, and after many days I found a solution by adding android:hardwareAccelerated="true" to my MapsActivity on AndroidManifest.xml
error react native React native attem to invoke method android.content.resources
Fix bug:
<activity
android:name=".MapsActivity"
android:configChanges="orientation"
android:hardwareAccelerated="true"
android:screenOrientation="portrait" />
Post a Comment