Android Gradle merged Values.xml uses wrong namespace

前端 未结 6 2047
野性不改
野性不改 2020-12-14 11:59

In the process of converting a project to the Android build system I get this error whenever I attempt to compile.

Gradle: Error parsing XML: prefix must not b

6条回答
  •  太阳男子
    2020-12-14 12:08

    In my case i found the following code within the styles.xml

     
                    
                        
                        
                        
                    
                
    

    In selector exists a error

    xmlns:android="http://schemas.android.com/apk/res/android"
    

    I removed the code above and solve my problem

提交回复
热议问题