SVG support
When trying to add SVG support to our project, we encounter an issue.We used svg-android project and it worked great, but we had a problem. Some of our images don't have a "width" & "height" attribute set on the "svg" element. when trying to load those images we got NullPointerException. After picking around, we found that the SVGParser doesn't support such images. So... we modified it: on SVGParser.java on class SVGHandler method "startElement()" modify the lines to the follow: It works great!