Graphhopper not working in release apk

TranslationMap.doImport uses TranslationMap.class.getResourceAsStream and with ProGuard obfuscation may be the reason.

You can exclude GraphHopper in ProGuard with:
-keep class com.graphhopper.** { *; }

2 Likes