Android likes drawables to be vector paths now like this:
<vector android:height="24dp" android:viewportHeight="140.0"
android:viewportWidth="140.0" android:width="24dp"
xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillAlpha="0.15" android:fillColor="#00000000"
android:pathData="M45.58,145L45.58,-3"
android:strokeAlpha="0.15"
android:strokeColor="#333333"
android:strokeWidth="24"/>
</vector>
However, making paths by hand becomes very overwhelming very quickly!
What tools are there to 1) take an image and export it as a path, and 2) take a path like above, render it as an image, and allow the image to be manipulated so the new path can be exported via 1?
I've been looking and looking and I can't figure out how to get these vectors. Thanks for your help!