It's actually been mentioned since Android 10 (9) ...
It has been mentioned in various threads
There is still no (and the question is whether ever and when will be) decompiler for new lua files
Printable View
It's actually been mentioned since Android 10 (9) ...
It has been mentioned in various threads
There is still no (and the question is whether ever and when will be) decompiler for new lua files
I have Igo nextgen version 9.18.27.687519.
Only the HNR files are in red,even though I have all the licences.
Any ideas?
sys.txt entry to "ignore" missing countriesQuote:
Originally Posted by christos2013 [Only registered and activated users can see links. Click Here To Register...]
[hnr]
ignored_missing_country_ids=*
[route]
hnr_ignored_missing_country_ids=*
Full, Western or Eastern Europe HNR are only 'red' if the country map is not complete.
If you only want East or West, then you have to stick to the country list
see txt file
Hi,
I own a Subaru Levorg MY 2017 car.
An iGO-primo v.9.12.45.610686 navigator is installed.
[Only registered and activated users can see links. Click Here To Register...]
The folder structure on the microSD is this:
-iGO-content
- license
content:
[Only registered and activated users can see links. Click Here To Register...]
license:
one file: [Only registered and activated users can see links. Click Here To Register...]
The map version is FTEN_14CY_EU_SUB@14Q3
Do you think it is possible to update the maps to a more recent version?
Many thanks for the help!
Hello
system in your car is not android
look for answers in proper sections
[Only registered and activated users can see links. Click Here To Register...]
Hello coleagues i need a little help with something:
I have i little problem to make igo nextgen to see userdata in memory card ,it see all others folders but not userdata Loading every folders in the sdcard/ content ,but not userdata
I managed to make userdata to be read in internal memory main folder by make an folder content and put inside only the userdata
But i want userdata to be read from microsd/content
Its any way to do that?
Below its my entry in sys
[folders]
has_secondary_root=1
data_folder_name="iGO_PAL"
linked_root_list="/storage/emulated/0 /storage/MicroSD /extsd /storage/extsd0 /mnt/extsd0 /mnt/storage/extsd0 /external_sd0/mnt/sdcard/external_sd0 /mnt/external_sd0 /mnt/sdcard/external_sd /sdcard2 /sdcard /sdcard/sd /mnt/sdcard /mnt/sd /mnt /storage /mnt/extSdCard /mnt/external_sd /mnt/sdcard/external_sd /sdcard/external_sd /storage/extSdCard"
android_secondary_root_path="/storage/6230-3232/iGO_Maps"
content="/storage/6230-3232/iGO_Maps"
In order to make userdata to be seen in main folder/content i have to comment this line
content="/storage/6230-3232/iGO_Maps"------original
like this
;content="/storage/6230-3232/iGO_Maps"--commented with ; semicolon
In that way iGO see both content
one in sdcard iGO_Maps with all folders ,less userdata
and one in internal memory content/userdata
But i cant make userdata to be read from microsd/iGO_Maps/content/userdata,Only the trick described above work
Reason for that i want this its because i have iGO installed in internal memory and content on sdcard
Im not sure if its the right way:banghead:
Thx for any advice
Gratitude,Cristian
[Only registered and activated users can see links. Click Here To Register...] the question is a little out of the context of the skin because it applies to any version of igo whatever its dress [Only registered and activated users can see links. Click Here To Register...]
I hope this will allow you to better understand how some partial redirects work in the section [folders] of sys.txt ;)
while CONTENT can be redefined as in your message, i.e. content="/storage/6230-3232/iGO_Maps on SDCARD content="/storage/emulated/0/iGO_Maps in internal memory, it is possible to dissociate some of the sub-directories of CONTENT provided that relative paths based on the location are used from CONTENT
[folders]
content="/storage/emulated/0/iGO_Maps/
userdata="userdata"
userdata="../iGO_Maps/userdata"
the last two lines are therefore equivalent
[folders]
content="/storage/emulated/0/iGO_Maps/
userdata="../../../../storage/6230-3232/iGO_Maps/userdata"
"../../../../" is used to reach the root folder, "storage/6230-3232/iGO_Maps/userdata" is added as relative path
However, it will be necessary to check whether the /end for content is necessary or if igo does not automatically add it because otherwise the absolute path effective for userdata would then be
"/storage/emulated/0/iGO_Maps//../../../../storage/6230-3232/iGO_Maps/userdata"
// is equivalent to a level added as an unnamed subdirectory that prevents the real location of userdata
@lunapark,it turns out to be quite tricky ,i ran manny test ,but i do not succed
Can this line to have some influence:data_folder_name="iGO_PAL"? Bcs if i comment this line the entire main folder its not seen
I'm at fault for not having tested before proposing something, I've based my experience on wince but it seems that some userdata="......" are not supported by some versions on android
However, there are still some elements that seem to work.
starting from an internal memory-installed iGO-Israel with by default the personal poi in "storage/emulted/0/iGO_Israel/content/userdata/POI" I moved any POI to the external memory (renamed it to mypoi to complicate it :beating:) in /storage/6230-3232/iGO_Israel/content/userdata/mypoi"
in the section of sys.txt I put the original path of "content" the retention and made a redirection for the "mypoi" folder
And I have all my personal poi accessible in the map settings.Code:[folders]
content="/storage/emulated/0/iGO_Israel/content"
kmlpoi="../../../../../storage/6230-3232/iGO_Israel/content/userdata/mypoi"
"storage" being a parent directory common to the external and internal memory, it is possible to lighten as follows:
it is necessary to correctly identify the folder "content" and add as many ../ as necessary to go to storage or the root, then we add the path of the SD leading to the chosen directoryCode:[folders]
content="/storage/emulated/0/iGO_Israel/content"
kmlpoi="../../../../6230-3232/iGO_Israel/content/userdata/mypoi"
some additional elements are available with default values
kmlpermit="userdata/PERMIT"
kmlavoid="userdata/AVOID"
kmlroute="userdata/ROUTE"
on the other hand for icons "userdata/USERICON" I didn't detect equivalence to place them out of default context.
LAST EDIT :
For icons associated with kml, it is necessary to go to another section and proceed as follows:
in normal use the default value recorded in the application isCode:[poi]
kml_icon_path="../../../../../storage/8737-1BEE/iGO_Israel/content/userdata/USERICON"
kml_icon_path="%content%/userdata/USERICON"
Now the most urgent is to have a good night to get clear ideas tomorrow :classic: :)))