Old Q&A-Thread - This Thread will be split into multiple KB-Thread soon

Search This thread

Martin_5224

Member
Nov 8, 2014
20
0
This is why the preset restoring isn't working. It can't find this method within your MTCRadio.apk. It's probably something that was added to a later version of the Radio, since I did testing against KGL 2.03.
If you don't want to flash a whole system update, you could try replacing the MTCRadio.apk in /system/app with a newer one.
---------- Post added at 10:39 AM ---------- Previous post was at 10:38 AM ----------

Hello! Thank you so much for your information. I'll try to replace MTCRadio.apk (1.77) with MTCRadio.apk (2.03), I'm not sure it will work, then I'll try the application from 1.86 or 1.92, something like that. If it doesn't work, I'll think about flashing...
 

azur89

New member
Dec 11, 2010
3
0
This is why the preset restoring isn't working. It can't find this method within your MTCRadio.apk. It's probably something that was added to a later version of the Radio, since I did testing against KGL 2.03.

If you don't want to flash a whole system update, you could try replacing the MTCRadio.apk in /system/app with a newer one.

---------- Post added at 10:39 AM ---------- Previous post was at 10:38 AM ----------



Try getting into recovery, and either do a factory reset from there, or flash an update.img from sdcard. Instructions are on the 1st post.

Easy to say...hard to do...I tried every combination...There is no reset button (not even the hard reset) , I tried de 2.03 version on the gps card..not working.....for 2 weeks I tried everything, including asking for help from my seller....no reply there......Thank anyway//// Just to make myself clear, I can`t go in recovery.
 
Last edited:

agentdr8

Senior Member
Mar 4, 2007
3,648
1,896
Cowtown, CA
Easy to say...hard to do...I tried every combination...There is no reset button (not even the hard reset) , I tried de 2.03 version on the gps card..not working.....for 2 weeks I tried everything, including asking for help from my seller....no reply there......Thank anyway//// Just to make myself clear, I can`t go in recovery.

Which model do you have? They should all have reset buttons; some are hidden behind covers or the removable faceplates.
 

azur89

New member
Dec 11, 2010
3
0
Which model do you have? They should all have reset buttons; some are hidden behind covers or the removable faceplates.
I had it out, I had it open...I looked all over....I will try again tomorrow....I dont have 10 post yet, so aliexpress.com/item/Wholesale-Dual-Core-Android-4-2-Capacitive-Touch-Screen-Special-Car-DVD-Player-For-Honda-CRV/1878305786.html if it works (the link).
 

agentdr8

Senior Member
Mar 4, 2007
3,648
1,896
Cowtown, CA
I had it out, I had it open...I looked all over....I will try again tomorrow....I dont have 10 post yet, so aliexpress.com/item/Wholesale-Dual-Core-Android-4-2-Capacitive-Touch-Screen-Special-Car-DVD-Player-For-Honda-CRV/1878305786.html if it works (the link).

Hmm, you're right; don't see an obvious way to reset the unit. There's probably a reset pad on the front faceplate pcb though, even if it is covered by the plastic fascia.
 

Martin_5224

Member
Nov 8, 2014
20
0
java.lang.NoSuchMethodError: com.microntek.radio.RadioService#resetRadioPrefere nce()#exact
This is why the preset restoring isn't working. It can't find this method within your MTCRadio.apk. It's probably something that was added to a later version of the Radio, since I did testing against KGL 2.03.
The reason why XposedMTC cannot work the 1.77 version with, is clear. I unpacked MTCRadio.apk of 1.77 and 2.03 versions. In 1.77 the information about frequencies is in RadioActivity.smali, but in 2.03 - in RadioService.smali. But the structure of arrays (where frequencies are written) is the same. Is it possible to change the specified path in XposedMTC or to make an alternative path?
 

agentdr8

Senior Member
Mar 4, 2007
3,648
1,896
Cowtown, CA
The reason why XposedMTC cannot work the 1.77 version with, is clear. I unpacked MTCRadio.apk of 1.77 and 2.03 versions. In 1.77 the information about frequencies is in RadioActivity.smali, but in 2.03 - in RadioService.smali. But the structure of arrays (where frequencies are written) is the same. Is it possible to change the specified path in XposedMTC or to make an alternative path?

Yep. I'll see if there's a manifest version difference, and adjust the method hook accordingly.
 

Martin_5224

Member
Nov 8, 2014
20
0
Yep. I'll see if there's a manifest version difference, and adjust the method hook accordingly.

Wow, thank yu in advance! It would be wonderful!
Meanwhile, I'm trying to modify MTCRadio.apk to replace the default frequencies with my ones. Maybe you know which arrays are responsible FM1, FM2,FM3 groups for, there are a lot of arrays there, part of them should be responsible for various countries frequency ranges, and some of them - for FM(1,2,3). In default regime frequencies are the same in groups, so it's difficult to understand what and where....
 

agentdr8

Senior Member
Mar 4, 2007
3,648
1,896
Cowtown, CA
Wow, thank yu in advance! It would be wonderful!
Meanwhile, I'm trying to modify MTCRadio.apk to replace the default frequencies with my ones. Maybe you know which arrays are responsible FM1, FM2,FM3 groups for, there are a lot of arrays there, part of them should be responsible for various countries frequency ranges, and some of them - for FM(1,2,3). In default regime frequencies are the same in groups, so it's difficult to understand what and where....

It's defined as a 3-dimensional array:

Code:
this.defaultfreq = new int[][][]
{  
        0{ 
                0{ 87500000, 90100000, 98100000, 106100000, 108000000, 87500000 }, 1{ 522000, 603000, 999000, 1404000, 1620000, 522000 } },
        1{ 
                0{ 87500000, 90100000, 98100000, 106100000, 108000000, 87500000 }, 1{ 522000, 603000, 999000, 1404000, 1620000, 522000 } },
        2{ 
                0{ 65000000, 67100000, 70400000, 72500000, 74000000, 65000000 }, 1{ 522000, 603000, 999000, 1404000, 1620000, 522000 } },
        3{ 
                0{ 65000000, 67100000, 70400000, 72500000, 74000000, 65000000 }, 1{ 522000, 603000, 999000, 1404000, 1620000, 522000 } },
        4{ 
                0{ 87500000, 90100000, 98100000, 106100000, 108000000, 87500000 }, 1{ 530000, 600000, 1000000, 1400000, 1710000, 530000 } },
        5{ 
                0{ 87500000, 90100000, 98100000, 106100000, 107900000, 87500000 }, 1{ 530000, 600000, 1000000, 1400000, 1710000, 530000 } },
        6{ 
                0{ 76000000, 76400000, 85600000, 87000000, 90000000, 76000000 }, 1{ 522000, 603000, 999000, 1404000, 1629000, 522000 } },
        7{ 
                0{ 87500000, 90100000, 98100000, 106100000, 108000000, 87500000 }, 1{ 522000, 603000, 999000, 1404000, 1710000, 522000 } }
};

The first index is the region; selected in the Factory Settings menu. The second is band; 0 is FM, 1 is AM. And last is the channel frequency.
 

markastor

Senior Member
Dec 24, 2010
81
3
Anybody knows what this unit is or where I can download firmware for it?

I would like to extract from tis firmware the launcher and the radio apk.
 

Attachments

  • 1.jpg
    1.jpg
    90.3 KB · Views: 402
  • 2.jpg
    2.jpg
    119.1 KB · Views: 405

typos1

Senior Member
Apr 3, 2007
9,563
1,770
UK
Take a look at their own forum: http://xdaforums.com/android/general/winlink-ownice-android-head-unit-4-4-2-t2899282
They seem to be moving along a great pace. They have the source code and are working with it. On the other hand, the basic functions, like stereo balance and the front to back fader were rudimentary when I last looked.

---------- Post added at 08:36 PM ---------- Previous post was at 08:25 PM ----------



Well, all the interesting happenings I mentioned are in the http://xdaforums.com/android/general/4-4-2-kitkat-head-unit-newsmy-carpad-t2865525 Newsmy carpad forum. They don't have a DVD player, or an underlying MCU. The Android box is (or is like) a TV media player and can be taken out of the car and played with in conjunction with a PC.

The Ownice unit does have an MCU and isn't out yet, hence the dead forum. Expect more info when the HUs may ship in December.

I ve seen the Newsmy one as well, didnt realise they both had forums on XDA, more threads to spend ages reading :eek:
 

Martin_5224

Member
Nov 8, 2014
20
0
It's defined as a 3-dimensional array:...
Thank you!
My experiments showed me, I cannot preset all 18 frequencies, 6 only. I tried to install newer versions of MTCRadio, but those of them which have friequencies presets in RadioServis. smali, cannot work properly under 1.77, so the only my hope is to XposedMTC modification!
 

kwalsh24

Senior Member
May 1, 2011
1,012
77
Sigh, its gotten colder here on Canada, and now my screen in my radio is starting to show that, the bottom inch of the screen flickers when its cold, also notice that the screen is fainted a bit too. Anyone else having similar issues ?

Also has anyone gotten any responses from sellers sselling the 1024 models for VW spec?
 
Last edited:

typos1

Senior Member
Apr 3, 2007
9,563
1,770
UK
Thank you!
My experiments showed me, I cannot preset all 18 frequencies, 6 only. I tried to install newer versions of MTCRadio, but those of them which have friequencies presets in RadioServis. smali, cannot work properly under 1.77, so the only my hope is to XposedMTC modification!

No, its NOT your only hope - you could save yourself a load of time and effort and just update to the latest version instead of worrying about the possiblity of problems that have long since been sorted and that no one else is reporting.

I could understand if you had tried the latest versions and had the problems the you are worried about, but you havent even bothered trying, all your worries are based on what youve read from months ago, nothing that youve actually experienced and youre ignoring the advice of people who have the latest versions and have not had the problems you worry you might get.

Plus some people on here are wasting their time trying to help you sort a problem you may only have because youre using an old software version, or that may possibly turn out to be a hardware problem (if it still persisted after update to latest version) and therefore may require the unit being opened up and being repaired or being returned for a replacement.

(bangs head against wall again)
 
Last edited:
  • Like
Reactions: liquidini

agentdr8

Senior Member
Mar 4, 2007
3,648
1,896
Cowtown, CA
Thank you!
My experiments showed me, I cannot preset all 18 frequencies, 6 only. I tried to install newer versions of MTCRadio, but those of them which have friequencies presets in RadioServis. smali, cannot work properly under 1.77, so the only my hope is to XposedMTC modification!

I can't imagine why it wouldn't work, as the RadioService is started by the RadioActivity, not the MicrontekServer.

Either way, I've found the method for the older Radio package that resets the presets, and will include it in the next XposedMTC release.
 
SWC problem

Since yesterday i have a problem with my SWC. If i press Forward or back a second player starts to play simultanius with the stock mp3 player. The second player is listed as( music root 4.2.2 ... ) in titanium backup. Tha funny thing is if i uninstall the player with titanium it gets back on the next boot.
My unit is rooted and nothing else.
Any clues?
 

Martin_5224

Member
Nov 8, 2014
20
0
I can't imagine why it wouldn't work, as the RadioService is started by the RadioActivity, not the MicrontekServer.
Either way, I've found the method for the older Radio package that resets the presets, and will include it in the next XposedMTC release.

Thank you in advance!
Concerning working of various versions MTCRadio, this is my supposition, because the location of array blocks is the only visible to me distinction among them. In fact, all of them started well, but newest versions (2.01, 2.03) stopped after my trying to set frequencies (I mean, manually, by standard way) , a pop up message informed about an error, radio vanished from the screen, and it continued playing anyway. It was nothing possible to do, but to restart the HU after that. This is the way things are...
 

agentdr8

Senior Member
Mar 4, 2007
3,648
1,896
Cowtown, CA
Thank you in advance!
Concerning working of various versions MTCRadio, this is my supposition, because the location of array blocks is the only visible to me distinction among them. In fact, all of them started well, but newest versions (2.01, 2.03) stopped after my trying to set frequencies (I mean, manually, by standard way) , a pop up message informed about an error, radio vanished from the screen, and it continued playing anyway. It was nothing possible to do, but to restart the HU after that. This is the way things are...

Ah I see. There is probably some other dependencies that the newer Radio version rely on within the MicrontekServer. Like @typos1 stated, a lot of these issues would be moot if you just flash a newer system image.
 

typos1

Senior Member
Apr 3, 2007
9,563
1,770
UK
KIT KAT !!!!!!!!!!!!!!

I got an update from Klyde the other day, just thought I d flash it and . . . . .

Its Kit Kat !!!

And everything seems to be working . . . apart from its the wrong screen res for my 6.5 inch unit :(

I ve done a little video for everyone, although its pretty much the same as the pics weve seen of units with Kit Kat, still I thought people would appreciate it.

Because the screen res is wrong its hard to use the screen.

I try in the video to go into factory settings, but I gave up in the end as its hard to hold a phone and use the touch screen when its set to the wrong res at the same time.

I did mange when I wasnt recording and I noticed that there are many more CAN Bus options. Maybe it will sort the CAN bus problems some people have been having ? I ll upload it to youtube and post a link later - havent logged into youtube for a while and now it wont let me, god how I hate Google.

Edit: managed to install Nomone Resolution Changer and found out its the 1024x600/300dpi firmware, which is why its not displaying properly, Nomone requires root, pretty certain root access has disappeared, tried to re root using the chinese app, but cant - its too difficult to use that app and a screen with bits cut off cos its the wrong resolution. Webdude said he couldnt root it at all, so I may not be able to even if the res was right. Gonna have to contact Klyde and get the lower res kit Kat update.

Thank you in advance!
Concerning working of various versions MTCRadio, this is my supposition, because the location of array blocks is the only visible to me distinction among them. In fact, all of them started well, but newest versions (2.01, 2.03) stopped after my trying to set frequencies (I mean, manually, by standard way) , a pop up message informed about an error, radio vanished from the screen, and it continued playing anyway. It was nothing possible to do, but to restart the HU after that. This is the way things are...

(And even though it was an update to a totally different Android version ALL the settings were saved.

As I backed up my apps with Titanium back up, I can restore everything to how it was before the update in minutes.)
 
Last edited:
  • Like
Reactions: liquidini

Top Liked Posts

  • There are no posts matching your filters.
  • 147
    HuiFei - 2 DIN Pure Android 4.2.2/4.4.2/4.4.4 RK3066/RK3188 Car Stereo Radio Head Unit. KGL/KLD/RM/GS/JY/MD/KYD/BN/HA [ROOTED]

    Moderation Announcement (added by @dark alex)
    Hi together this is an important announcement!

    As you knew Mike an me we were talking about a dedicated section.
    This is now achieved and I am requested by him to sort things out from here.

    I will split out some Key knowledge posts, for example malaysks Firmware-Post, to new Threads in our subforums.

    Developers
    Please if you create new work open you own Thread in the new forums. If you already have posted here probably wait until I split your post out or write to me to ensure I will split you out if you think I missed you or you have a critical release.

    Questionning Users
    Please open your own thread for your questions in our new section. I can not split out every question from here. This thread will be left over for searching so please if you have current questions just ask in our new Q&A-Section.

    I will start splitting up this thread in about one hour.

    You can find the new section at the bottom of this link:
    http://xdaforums.com/android-auto

    Thank you!



    This is a new thread for this car dvd that was first reported on comment #2224 of the AN-21 U thread.

    Probably you are here because:

    • you want to root your unit. Only units with ROMs 4.2.2 can be rooted (see below how). The only way to have a rooted 4.4.x is installing a pre-rooted ROM (see below how)
    • you have a problem (no internet, no sound, buttons do not work, bad mic quality, rear camera image not showing, door opening not showing, etc.
    • you want to upgrade your unit to a newer software that has sleep mode, personalized music app, personalized functions, root, xposed, can remap buttons, etc.
    All this is covered in this post and most of the problems that you can have are summarized in this post too. Please read this first post before asking. And use the search function of the thread, before asking. Thanks.

    TRICKS THAT MIGHT SAVE 1000 QUESTIONS ON THE THREAD
    Read below and here for basic questions asked and answered 1000 times.

    How to root my unit. Only 4.2.2 can be rooted with an app (see below). To have rooted 4.4x you must install a pre-rooted ROM (see below)
    Get sound when in reverse (thanx to @Keylo Lo)
    here
    Engineering/Factory settings password "126" (thanx to @blankers)
    This allows you to change logo, sound volume, SWC codification, etc.
    Activate USB debugging --> Go to Factory Settings and enter password "adbon".
    System sound is low compared to Radio--> Go to Factory settings and change volume levels
    GPS button does not trigger GPS app You need to choose predefined GPS app, in Settings--> GPS

    Get Into Recovery
    1 Press reset button and power button together
    2 After about 5 secs release reset button, but keep pressing power button
    3 When booting screen appears release power button.
    4 It boots into recovery.
    --Update 1-- some units without front USB have a different procedure
    Firstly power on the unit and then long press the power button and then reset. Then the unit will get three rings and you loose your hand on the power button and short press the power button again. (thanx @netay)
    --Update 2-- some others have this procedure (thanx @R4D3N)
    1. Turn off the unit by holding 3-4 sec the power button.
    2. Hold the RESET button + POWER button for 5 sec
    3. Release the RESET button and keep pressing the POWER button for 2 sec
    4. Release the POWER button and wait. The Recovery menu appears.
    5. With the Volume knob you can move up/down and long press on Volume/Power button to select the option.

    Get Into Bootloader
    The process is basically the same, with the difference that you need to have the computer attached to the unit via the front miniUSB (if you do not have a front USB, you will have to ask your seller how to get into bootloader mode)

    1- boot the unit as usual.
    2- plug the front usb of the unit to your computer usb.
    3- Then, push the reset button and the power button at once and keep them pushed. The reset button is the tiny pin next to the mp3 sdcard. The power button is the volume knob. You will hear the power cut throught the speakers.
    4- Release reset button and keep power button pushed. Now the unit will reboot. You will see nothing, just a black screen. Do not release the power button yet. Your computer will detect a " new hardware", that is the RolckChip. When you hear the windows noise of new detected hardware, you can release power button. It will automatically install the drivers.
    ------------------------------------------------------------------------------------------------------------

    HOW TO UPGRADE YOUR SYSTEM
    BEFORE UPGRADING YOUR UNIT YOU MUST KNOW
    • MCU your unit, there are many (KGL, KGL1, KGL2, KGL3, KGL4, KGL5, KLD, KLD1, KLD2, JY, GS, KYD, MD, BN, HA, MX), If you install the wrong MCU, you will brick your unit.
      To know which one you have. Go to Settings -->About
      If still not clear, see: here or here.
      If you cannot find it here, it probably means that you are in the wrong thread.
    • Resolution of your unit. 800x480 or 1024x600. If you install the wrong ROM, you will brick your unit.
    • Chip of your unit RK3066 or RK3188. It does not really matter, ROMs and MCU are compatible between chips.
    IT IS ADVISABLE TO BACKUP YOUR SYSTEM BEFORE PLAYING WITH IT
    Upgrading is supposed to be a safe operation, but you never know what can happen. So, before updating make sure that:
    1- To backup of your system the easiest way is download nandroid root from google play, and do a nandroid backup with TWRP format). Save it in your external SD.
    2- make sure you can enter in bootloader mode (see below how to)
    3- it is recommended to backup your apps and data (use titanium from google play). The update will do a factory reset.​
    FOLLOW THIS TO UPGRADE YOUR ROM AND/OR MCU
    0- Do a back up (copy the files somewhere safe) of your internal SD card memory. It will be wiped during the process.

    1- Download the ROM (Resolution 1024x600 or 800x480) and MCU (KGL, KLD, JY, GS,RM, MX, BN, HA) for your unit.
    ROMs--> repository This will get you a file named update.img. There are different "flavors" of ROMs.
    Code:
    - [user=853627]@coudu[/user] (rooted, stock). Early v4.0 and v4.1 have some problems.
    - [user=3590033]@Malaysk[/user] (rooted, with very useful mods, some come with NEXT launcher)
    - [user=6041319]@dsa8310[/user] (rooted, almost stock)

    MCUs--> Latest MCUs by Malaysk are here . This will get you a file named mcu.img

    2- copy the update.img you have chosen to the root of your GPS card.

    3- copy the mcu.img for your specific unit to the root of your GPS card (if you do not want to update mcu.img, you can skip this step)

    4- insert back the GPS card to the unit. If no window pops up, reboot the unit. At boot, the presence of update.img will be detected and a pop up window will ask you whether you want to update your unit. It will automatically reboot into recovery mode and update your unit. Once done, remove update.img and mcu.img from the root of the gps card or you will be asked every boot for an update.

    5- In some Coudu´s (sd partition of 3Gb) and Malaysk´s ROMs versions, it is necessary to do a factory reset just after the first boot so that everything works properly.

    6- If you lost buttons or radio after the upgrade --> Go to Factory settings (password 126) and choose the proper canbus for your car and the radio chipset. You can change boot logo if you want.

    * If you get Google services error after upgrading to KitKat see this and this
    ------------------------------------------------------------------------------------------------------------------

    THINGS YOU MAY WONDER BEFORE BUYING A HEADUNIT
    Code:
    [B]- Boot Up:[/B]: time is around 30s. 
    [B]- GPS[/B]: GPS positions very fast. TomTom, Navigon, Sygic,  and regular off-line GPS work. Navigon and Sygic have some problems with some ROMs
    [B]- Stand by mode[/B]: Latest ROMs and MCU have the possibility of choosing stand by mode with various times chosen.
    [B]- Radio:[/B] radio stations are saved as frequencies
    [B]- Bluetooth contacts:[/B] contacts are saved on the device.
    - Works fine with Bose system (Audi)
    - Possible ground loop noise that needs some tricks to be removed (see section problems) 
    - Torque works and can run in parallel with A2DP
    - ELM327 works (might need special app like CarService in very weird cases)
    - Camera works (might be better to get the one with RK3188 chip)
    - There is no automatic brightness control because the unit does not have light sensor, but there are apps that can help
    - The touch screen is extremely responsive. It works as good as most phones.
    -------------------------------------------------------------------------------------------------------------------

    HOW TO ROOT AND INSTALL TWRP
    Instructions to get root (thanx to @webdude12)
    It only works for Android 4.2.2. If you want to root 4.4.x you need to take apart update.img and inject SuperUser app (this is only for experts as @coudu, @Malaysk, @dsa8310 ). The alternative is to install a 4.4.x pre-rooted image and you do not have to do anything else. See below in HOW TO UPGRADE YOUR UNIT section how to do it.

    If you want to root your 4.2.2, download Root Master 2.1.1 here
    Code:
    1- Install the APK.
    2- Make sure you are connected to WiFi and you have an internet connection.
    3- Open Root Master (do not upgrade to newer version unless you can read chinese, The newest version has different options, all in chinese. Version 2.1.1 just has a button that says "root".))
    4- Press root button
    5- Chinese characters will flash across the screen.
    6- A second popup box will appear, press the purple button.
    The app will automatically install SuperUser.
    This program connects to servers oversea sending hardware information. The downloads a script that will attempt to root the device. If the first script fails, it downloads additional ones. Future goal is monitor this communication with a data logger and find which script works, so that a unique program can be written to achieve root.​
    ------------------------------------------------------------------------------------------------------------------

    How to install TWRP recovery (thanx to Abdul_pt from Freaktab and 1-2-Hak and coudu)
    You do not really need to install TWRP unless you wanna mod the rom yourself, if you mod roms you will know that already.
    - a.t.m. you need a mouse to use TWRP because touch is not working yet
    - if you install TWRP, you will not be able to update the update.img and mcu.img the way it was explained above.

    If you still want to install TWRP:
    Android 4.2.2 800x480
    Download files here
    And follow the post by 1-2-Hak

    Android 4.4.2 800x480
    Follow this: this

    TWRP for 1024x600
    See this post
    ------------------------------------------------------------------------------------------------------------------
    TRICKS AND MODDED APPS THAT DO WONDERS
    • Install app without adb when regular install does not work
      Sometimes the app won't install normally and you need to sideload it.. This means that you need a computer and adb wifi. There is another way with which you won't need a computer. You just need to install a terminal emulator (you need root ).
      1- Download the terminal emulator app you prefer
      2- Download the app you want to install to /mnt/sdcard
      3- Open terminal emulator
      4- On the terminal navigate to /mnt/sdcard by typing
      Code:
      - cd /mnt/sdcard
      - su
      - pm install "NameOfTheApp".apk
      Done, you are app is now installed.

    • Modified Radio Apps
      To install radios you need to copy the app using ESExplorer or Root Explorer straight to /system/app in place of MTCRadio.apk
      Radio version 4.2.2 800x480
      Radio version 4.4.4 800x480

      Radio version 4.4.4 (Malaysk v1, aka alive)

      [*]Car Service. Allows to use SWC and buttons with 3rd party apps (Latest Malysk ROMs already include it).
      Download here (thanx @@KeiserSozeyFr)
      If it does not install, copy directly to /system/app

      [*]Microntek HeadUnit Service Latest Malaysk ROMs include it. It allows to use SWC with non native apps. It allows to make calls and send messages from Android part of HU, and to show toasts. You can find it straight on Google Play.
      There is a modified version (probably outdated) with early start of services here

      [*]Moded Music app. Two versions. One is the original with expanded list, so full names can be seen, and the other one has the list integrated in the background so it is always visible.
      http://xdaforums.com/showpost.php?p=53352994&postcount=894 (thanx to @dark alex)
      anoher one here

      [*]Set Loud Latest ROMs do no need it.
      Method 1:Method 2:

      You need Tasker or Automagic or similar app.
      Set up a task that runs at boot with the following code as "shell command"
      am broadcast -a com.microntek.irkeyDown --ei keyCode 44
      How to: http://xdaforums.com/showpost.php?p=53553617&postcount=1058
      [*]Speed-sincronized volume increase (AKA GALA)
      This app will modify the volume of your unit according to the speed. The amount sensitivity can be adjusted.
      http://xdaforums.com/showpost.php?p=53441283&postcount=931 (thanx to @dark alex)

      [*]PowerAmp Toast (thanx @agentdr8)
      This app will show title/album/album art when tracks change while PowerAmp is in background.
      http://xdaforums.com/showpost.php?p=53964813&postcount=1461

      [*]Rear Camera without icons (icons were included in the KitKat version 4.4.2) (thanx @typos1 and 4pda.ru guys)
      http://xdaforums.com/showpost.php?p=56888840&postcount=5096

      [*] KLD Launcher 4.4.2 with bigger date
      Launcher see picture

    ---------------------------------------------------------------------------------------------------------​

    FILE REPOSITORY, FIRMWARES and MCUs for KGL/KLD/GS/RM/JY/MD


    Some of the firmwares are... (list not updated)
    • Custom KitKat 4.4.2 by 4pad.ru (RK3066)
    • Coudu's 4.4.4 v4.2 (RK3066) (January 2015 release), see here
      - Coudu v4.0 and v4.1 have some problems. v4.2 is good (specially releases 150113 for KLD and 150113 for KGL). You might need MTCControlSettings.apk as in these latest releases coudu removed it.​
    • Malaysk's roms (RK3066) w/ and w/o NEXT launcher, also 4.4.4 here
    • JY Android version is this one
    • Malaysk's roms (RK3066) version 24/05/15 Download here. It allows the remapping of the radio buttons.
    • dsa8310 JY rooted ROM 150513 (RK3188) Download here
    -------------------------------------------------------------------------------------------------------------------------------

    WIKI-Page
    Basic info on everything
    Another wiki with general info here
    -------------------------------------------------------------------------------------------------------------------------------

    PROBLEMS AND SOLUTIONS FOUND BY THE USERS
    Unfortunately the first issues with the promising unit arrived.
    20
    http://huifei.fs-fileserver.de/

    Good news!! Now I'm going to lay out all of the latest firmware on the server http://huifei.fs-fileserver.de/content/firmware/MALAYSK%20ROMS/

    Thank dark alex
    17
    Good news for Sygic users :)

    I have found solution how to make Sygic to work on ours devices.
    It is wery easy and it finaly works for me, and I would like to share it with others. You can make it in two steps.
    First of all you have to install rooted ROM. I have install update_4_4_4_RK3066_1024X600_7_MAL_14_05_2015.rar
    You can find rooted rom for your device on this link https://drive.google.com/folderview?id=0BxmzvLRI7-eNeVA2SWkwM1pLZ28&usp=sharing#listv
    When you done you have to install Xposed IMEI Changer. You can find it at Google Play Store and start the app. Xposed Installer will prompt up and you have to give permissions to IMEI Changer and to install Framework if you did not already.
    Than yo have to open IMEI changer and copy IMEI code from your smartphone. (I have HTC M7 and IMEI code you can find in Settings-Info-Tlefon identity.
    After that you have to reboot device and open IMEI changer to see is it new IMEI applied.
    If it is, than you have to go to Google Play Store, install Sygic and download maps.
    Result you can see on attached image.

    I hope that it will work for others.
    16
    NEW from 27 October, 2015
    Only for RK3066 800X480

    Most global firmware update from me, perhaps a few months to 800X480.
    Changes, updates, deletes, transfers, etc. lots of. I write about everything I will not. Here are just a couple:
    +++ Android part of 10 October.
    +++ New NEXT launcher - a slightly redesigned our radio me :)
    +++ The new boot logo (the very first - that appears when you download a few seconds)
    +++ Added gradient Status Bar (Settings - System)
    +++ A new panel ext. programs and recently run (Settings - System)
    +++ Added new tab in Preferences - Advanced Settings screen (think there will understand)
    +++ Fixed program MTCBlueTooth - incorrectly displays the number of the incoming call
    +++ Well, and so on. D.

    Firmware I have not done a simple upgrade - erased all the data. Make a backup of your applications (System Settings then do by hand - not to restore from backup !!!)
    HERE
    15
    NEW from September 6, 2015
    Only for RK3066 800X480

    +++ Android base on September 3, 2015
    +++ Many,many other fixes and additions.

    Download HERE