From 855f784ccb27980f694e88d05d9c74f31e7eea82 Mon Sep 17 00:00:00 2001 From: sonora Date: Thu, 15 Jun 2017 10:57:33 +0200 Subject: [PATCH] fix getStringKey --- OsmAnd/src/net/osmand/plus/development/TestVoiceActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/development/TestVoiceActivity.java b/OsmAnd/src/net/osmand/plus/development/TestVoiceActivity.java index bcd5324b0f..85745e4dfa 100644 --- a/OsmAnd/src/net/osmand/plus/development/TestVoiceActivity.java +++ b/OsmAnd/src/net/osmand/plus/development/TestVoiceActivity.java @@ -141,7 +141,7 @@ public class TestVoiceActivity extends OsmandActionBarActivity { private String getVoiceSystemInfo() { String v =""; v += "App profile: " + ((OsmandApplication) getApplication()).getSettings().APPLICATION_MODE.get().getStringKey(); - v += "\n\nVoice guidance output: " + ((OsmandApplication) getApplication()).getSettings().AUDIO_STREAM_GUIDANCE.get().getStringKey(); + v += "\n\nVoice guidance output: " + ((OsmandApplication) getApplication()).getSettings().AUDIO_STREAM_GUIDANCE.get(); v += "\n\nOsmAnd voice: " + osmandVoice; v += "\n\nOsmAnd voice language: " + osmandVoiceLang;