Home > Blockchain >  Can't determine type for tag '<macro name="m3_comp_bottom_app_bar_container_color&
Can't determine type for tag '<macro name="m3_comp_bottom_app_bar_container_color&

Time:10-27

Hi I'm having problem on running my android app...

here's a ss of the error:

enter image description here

CodePudding user response:

In your build.gradle file where "dependencies" section is paste this:

implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.6.0'

in this section. And remove old strings with same text and other number versions. (in my case:

implementation 'androidx.appcompat:appcompat:1.5.1'    
implementation 'com.google.android.material:material:1.7.0'

). Have worked for me.

source: https://github.com/facebook/react-native/issues/33926

CodePudding user response:

I resolved it by replacing implementation 'androidx.recyclerview:recyclerview:1.2.1' instead of implementation 'com.google.android.material:material:1.7.0' in build.gradle(:app)

  • Related