gradle.build

    [react-native] android build시 npm list의 compile버전에 대한 문제

    Error react-native npm 하위 프로젝트의 android compile 버전이 root project의 버전과 상이하여 발생하는 문제 error: resource android:style/TextAppearance.Material.Widget.Button.Borderless.Colored not found. error: resource android:style/TextAppearance.Material.Widget.Button.Colored not found. Solution this fixed for megradle.build에서 하위 프로젝트에 대한 버전을 명시해준다.in android/build.gradle subprojects { afterEvaluate {project -> if ..