Android Maven build gives trouble processing “javax/xml/namespace/QName.class”:

前端 未结 2 834
青春惊慌失措
青春惊慌失措 2021-01-02 05:18

Following error is showing in Maven console everytime I do Project -> Clean. Only the jar file is built in the target folder, apk

2条回答
  •  感情败类
    2021-01-02 05:46

    If your are using android maven integration, you should add the "provided" scope in your android sdk dependency.

            
    com.google.android        
    android        
    2.3.3        
    provided        
    
    

提交回复
热议问题