Device? - Motorola moto g9 play
Android? - android 15
Application? - iGO_Avic_v9.35.2.227616 (AvicMemint)
Latest Pongo Skin with ux and sys.txt? (data.zip - no)
Device? - Motorola moto g9 play
Android? - android 15
Application? - iGO_Avic_v9.35.2.227616 apk (AvicMemint)
Latest Pongo Skin with data.zip, ux, and sys.txt?
Everything as before!
Last edited by Andrey Form; 14th July 2026 at 10:19 AM. Reason: Merging three messages into one
Last edited by Andrey Form; 14th July 2026 at 10:19 AM. Reason: Merging two messages into one
Don’t Worry, Be Happy...
Hi Pongo!
Thanks for the new skin, it's great! I found a strange thing, I don't know if it's on purpose or if it's just a coincidence? Skin settings/Warnings/Alert points are not listed in the full skin functions, only if I set it to default.
Spoiler: Screenshot:
Last edited by Papp G; 16th July 2026 at 08:44 PM.
@Papp G
Look at the moderator's note.
But I'll give a quick answer.
That is the well-known "autorad" function.
Change the sys.txt entry to: disabled =1
I'm not able to find how to manage user profiles (in 32 bit version there is a file "user_profiles.zip" inside the ux folder which makes visible a button at the main screen and that allows to choose and manage user profiles).
Last edited by Leopardodos; 7th August 2026 at 07:25 AM.
Hi pongo,
Is it possible to fix the tolls_speedcam_gr.zip ux to work with World 64 bit?
Thank you
EDIT
Also ux map_provider_logo.zip from World isn't working. I replaced it with the one from Avic 64 and it's ok.
Last edited by AnthonyGreek; 15th August 2026 at 01:17 PM.
Unfortunately, on the Galaxy Tab A11 running OneUI 8.5, the screen remains black. I granted all permissions manually and also disabled Play Protect.
@pongo
Could you please check that line in tmc.lua?
delayText = m_i18n(L"Infinite")
I think it doesn't need the L
Hi Anthony
You are absolutely right. You only need to look at how the `m_i18n()` function is structured in the other LUA files. It may have evolved with newer versions of iGO Android, but originally it was only supposed to display plain text.
The extended L"Infinite" form is very likely to be displayed as an empty string, especially if it is combined with the use of a function that does not accept an extended string, such as translated_format( m_i18n( L" Example %s" ), value).
However, in `tmc.lua`, the entire function sc_GetDelayText() needs to be examined:
It seems to be intentional so that it returns an extended text string. If m_i18n() were not able to do that, the line should have been written this way: delayText =towstring(m_i18n("Infinite"))function sc_GetDelayText(fullDelay, blockOnRoute)
local zeroTimespan = TIMESPAN_0
local delayText = ""
if blockOnRoute then
delayText = m_i18n(L"Infinite")
elseif fullDelay > zeroTimespan then
delayText = L"+" .. Format.Timespan(fullDelay)
else
delayText = Format.Timespan(fullDelay)
end
return delayText
end
Last edited by lunapark; Yesterday at 07:35 PM.
Bookmarks