Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error resource bool fb_auto_log_app_events_enabled

I had an error when compiling my app error resource bool fb_auto_log_app_events_enabled managed to fix it

add bool.xml to android/app/src/main/res/values/bool.xml

the files

<bool name = "fb_auto_log_app_events_enabled"> true </bool>
<bool name = "fb_advertiser_id_collection_enabled"> true </bool>

enter image description here

like image 722
JAVIER SOLIS VELASCO Avatar asked Apr 30 '26 15:04

JAVIER SOLIS VELASCO


1 Answers

This issue shows upon running ionic cordova build android, what I did was to add a new file bool.xml inside platforms/android/app/src/main/res/values

inside bool.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <bool name="fb_auto_log_app_events_enabled">true</bool>
    <bool name="fb_advertiser_id_collection_enabled">true</bool>
</resources>

then run again: ionic cordova build android

like image 180
ironfist Avatar answered May 02 '26 07:05

ironfist