XmlPullParserException Binary XML file line #17 tag requires viewportWidth > 0

前端 未结 7 1807
轻奢々
轻奢々 2021-02-18 15:31

This is a follow up question to this question:

Update Android Support Library to 23.2.0 cause error: XmlPullParserException Binary XML file line #17 tag re

7条回答
  •  悲&欢浪女
    2021-02-18 16:03

    If the issue is in release app version. This solved for my release. I think because if you put shrinkResources true the drawable folders created does not have the drawable files.

        {
            ..
            minifyEnabled true
            shrinkResources false
    
        }
    

提交回复
热议问题