Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

Known Limitations for ADAS

    1. ADAS currently does not support android:tint.
    1. ADAS currently does not support "Stroke Only" path data.
    • If you require this for your workflow, you will have to:
      • Manually replace the fill color for each of the transparent paths to @android:color/transparent.
    1. ADAS does not currently create new subdirectories.
    • You must point the output file to an existing subdirectory, or ADAS will use the current working directory.
    1. ADAS can only process the namespace android: using the -d or --drawable flag.
    • Other namespaces (like app:) will cause ADAS to throw a fatal exception.
    • To fix this, use a text editor to replace the existing namespace with android:
    1. ADAS does not support <resources> as an XML root namespace, only the <vector> root namespace can be converted.
    1. ADAS does not support attribute references (?attr).
    1. ADAS does not support nested <group> elements, such as:
    <vector>
        <path d="some path data">
        <path d="some other path data">
        <group name="some name">
            <g transform="math here">
        </group>
    </vector>