David Carver

Results 27 comments of David Carver

Hey it's open source, you have the code, fork it and make changes. As far as I know @yigit does this in his spare time.

You could set an exclusion in your gradle dependency on android-priority-jobqueue to exclude the support-v4 dependency from being transitively included. Should make the error go away.

Basicly when you close the drawer you need to make all the views in the drawer invisible. Then when the drawer opens, make the views visible and set the focus...

I also specifically call requestFocus when opening and closing the drawers to help give the system some info on which item should have focus when opening and closing the drawers....

It could, but I believe you should be using the newer Accessibility Framework to help screen-reading software and other accessibilty software work with the app. This issue was originally filed...

Experimenting around with ImageMagick on windows seems to give a decent resolution on the map with the following command: magick inputfile.jpg -adaptive-resize 28x29%\! output.jpg I tried some cropping but the...

To strip out the black background and make it transparent. magick inputfile.jpg -transparent black -adaptive-resize 28x29%\\!output.png The images could then be run through pngquant or tinypng to further reduce the...

I unfortunately don't have a Mac. I do have a Linux box, which allows me to run use Gimp. What you might want to do, is create another Git repository...

@nickv2002 I had some time tonight to see if I could open the PXM files in GIMP unfortunately I can't open that format. I'm looking into some other options.

Gradle has docs on how to exclude transitive dependencies. https://docs.gradle.org/current/userguide/dependency_downgrade_and_exclude.html