[Q] ADWLauncher Power widget /drawer - Android Q&A, Help & Troubleshooting

Hi everyone,
Using apk changer, I want to add Power Widget in default_workspace.xml within ADWLauncher.apk
Edit : I've tried the following
Code:
<appwidget launcher:className="com.android.settings.widget.SettingsAppWidgetProvider" launcher:packageName="com.android.settings" launcher:screen="1" launcher:x="0" launcher:y="0" launcher:spanX="4" launcher:spanY="1" />
it works (after adb push via recovery) and after doing clear data of ADW Launcher, the power widget shows "Not configured Please add again" instead of usual buttons : wifi, bt, brightness ...
Is that Normal?
In addition to that, I'm trying to change drawer bgr color, I found it in integers.xml
The color's value is in integer, not in hex like #FFFFFF, and has default value : -2147483648 . I haven't understood how does it work
I want a black bgr with no tranparency . what value should I put ? I've tried 0 : wasn't the right value.
+ Any Idea about disabling default LiveWallpaper & put static wallpaper instead ?
The Rom is based on CM7 for HTC Desire.
Thanks.

Related

Custon buttons

i installed ae button, wanna get rid of it, but when i do i lose the voice command button. i only have 4 buttons in the settings button manager. any idea how to get the buttons back to the way they started? or add buttons to the phones default button manager?
gbenj said:
i installed ae button, wanna get rid of it, but when i do i lose the voice command button. i only have 4 buttons in the settings button manager. any idea how to get the buttons back to the way they started? or add buttons to the phones default button manager?
Click to expand...
Click to collapse
voice command or the voice dialer? for voice command you need to reg edit and add this
hklm/software/microsoft/shell/keys
add key 40C6
1. add binary data "default" value "\windows\appbuttons\record.lnk" -b (with quotes)
2. add dword flags value 0 (0000000)
3. binary data icon value "location of icon"
4. binary data name value button 5 (press and hold)
5. binary data ResetCmd "\windows\appbuttons\record.lnk" -b (with quotes)
then add key 40C7
1. add dword named BtnWnd value 0 (00000000)
2. add binary data "default" value "\program files\voice command\voicecmd.exe" - ptt
3. add dword flags value 0 (0000000)
4. binary data "icon" value "location of icon"
5. binary data "name" value "button 5"
that should do it...
if you have the OEM voice dialer then point #2 at the file for the voice dial program and then point #5 at that icons location
srtpusher said:
voice command or the voice dialer? for voice command you need to reg edit and add this
hklm/software/microsoft/shell/keys
add key 40C6
1. add binary data "default" value "\windows\appbuttons\record.lnk" -b (with quotes)
2. add dword flags value 0 (0000000)
3. binary data icon value "location of icon"
4. binary data name value button 5 (press and hold)
5. binary data ResetCmd "\windows\appbuttons\record.lnk" -b (with quotes)
then add key 40C7
1. add dword named BtnWnd value 0 (00000000)
2. add binary data "default" value "\program files\voice command\voicecmd.exe" - ptt
3. add dword flags value 0 (0000000)
4. binary data "icon" value "location of icon"
5. binary data "name" value "button 5"
that should do it...
if you have the OEM voice dialer then point #2 at the file for the voice dial program and then point #5 at that icons location
Click to expand...
Click to collapse
thanks alot, but could i just have a little more detail about waht i need to do. im using total commander for reg edits, and used the reg edits before to fix my mms with verizon, but im not sure what to do here. i keep getting "Error in line 1, not a valid hex string!" every time i add binary data default value"..." for either of them
to answer your question, i want to set up button 5 to use a program called voice speed dial. eventually ill want a bluetooth headset to access that program, but for now i just want to get that button working again.
similarly, if its possible to adjust the camera button to run a program(flashlight) when clicked, and open the camera when held.
thanks for the help
gbenj said:
thanks alot, but could i just have a little more detail about waht i need to do. im using total commander for reg edits, and used the reg edits before to fix my mms with verizon, but im not sure what to do here. i keep getting "Error in line 1, not a valid hex string!" every time i add binary data default value"..." for either of them
to answer your question, i want to set up button 5 to use a program called voice speed dial. eventually ill want a bluetooth headset to access that program, but for now i just want to get that button working again.
similarly, if its possible to adjust the camera button to run a program(flashlight) when clicked, and open the camera when held.
thanks for the help
Click to expand...
Click to collapse
OK! was able to get it done, was a little unclear based on the descriptions in your instructions, but once i looked at them, and looked at the existing buttons i had in the other folders it made some sense. you kept saying add binary data etc, but instead i just had to add a string with a vale of wtvr, maybe ur right and i just dont know the terminology, but thats what my registry had for the other buttons so i kinda just copied them.
thanks alot
one more question. any idea how i can add the flashlight program to the camera button(without holding it down)?

Changing font size and screen gamma CM7

Is there a way to do this? I had a Nook Color and it there was an app to change the gamma. Anyone know of an app that can do this for our TouchPads?
You can change the LCD density in the build.prop. Adjust it in increments of 10 until you find what you like.
Sent from XDA Premium on Thunderbolt
Stock dpi is 160.
I'm running 140 (slightly smaller). Valid is 0 to 255, but numbers over 240 caused issues with other devices so not a bad idea to have a current recovery backup.
How to edit your dpi manually:
Get Root Explorer from Market and scroll down to system, and tap it to open it. Then at the top, tap the [ Mount R/W ] button. It'll change to [ Mount R/O ] so you have read/write privilege. (If you're using a different editor, you'll have to figure out how to get read/write privilege.) Then long-press on your build.prop file, choose "edit".
Scroll down until you find this line (bottom section in ADDITIONAL BUILD PROPERTIES):
ro.sf.lcd_density=160
Tap to position your cursor at the end of the line and carefully change 160 to 140:
ro.sf.lcd_density=140
When done, tap the menu button, choose "save and exit" and tap the top button in Root Explorer to change back to [ Mount R/W ] and reboot.
There are other programs that let you edit system files, but you need one that uses root since this is a system file that can't be edited with some file managers.
Colchiro said:
Stock dpi is 160.
I'm running 140 (slightly smaller). Valid is 0 to 255, but numbers over 240 caused issues with other devices so not a bad idea to have a current recovery backup.
How to edit your dpi manually:
Get Root Explorer from Market and scroll down to system, and tap it to open it. Then at the top, tap the [ Mount R/W ] button. It'll change to [ Mount R/O ] so you have read/write privilege. (If you're using a different editor, you'll have to figure out how to get read/write privilege.) Then long-press on your build.prop file, choose "edit".
Scroll down until you find this line (bottom section in ADDITIONAL BUILD PROPERTIES):
ro.sf.lcd_density=160
Tap to position your cursor at the end of the line and carefully change 160 to 140:
ro.sf.lcd_density=140
When done, tap the menu button, choose "save and exit" and tap the top button in Root Explorer to change back to [ Mount R/W ] and reboot.
There are other programs that let you edit system files, but you need one that uses root since this is a system file that can't be edited with some file managers.
Click to expand...
Click to collapse
Does 140 give you any market app compatibility issues with some apps (Maps) for example. I know on my Thunderbolt there are only a few DPI's to chose from or I have app compatibility errors and can't update apps.
I use Nitrality from the market to change the DPI. It's under the UI section of the application I believe. I set my DPI at 200 and now I can actually see my icons.
180 Seems good. 160 a little too smal and 200 a bit too big for my taste.
I'm on 150 right now and think I'll keep it there until something goofy, like missing market apps happens.
Had that problem on the Nook and didn't even know it until I flashed a version with 160 dpi and instantly had about 6 updates in Market.
How does one get back to 160 dpi? The bar in nitrality wont go below 182 in portrait or landscape
Sent from my HTC Eva 4G using Tapatalk
For reason I'm getting launcher force close with anything under 160. Any idea why?
Mine's set to 150 and I just opened LPP, backed it up and uninstalled it. (I use it on my phone, but not optimal for tables, IMO. No FC's here.
Please post non development Questions into General Forum of device when there is no direct Q & A Forum.

Registry Tweaks for Lumia 710&800

Your phone must be Full Unlocked!
Then you should install WP7 Root Tools.
Unlock the hidden options in the settings:
LOCAL MACHINE/System/Accessibility/
Code:
"CompactMode"=dword: 0
"TTY"=dword: 1
"telecoil UI"=dword: 1
"telecoil"=dword: 1
Change Search Engine in Internet Explorer by vova1609
CURRENT USER/Software/Microsoft/Internet Explorer/SearchProviders
Google:
1. Create key "Google"
2. Create value:
value name: URL
value type: string
value data: http://www.google.com/m?hl=en&gl=us&client=ms-hms-tmobile-us&q={searchTerms}
3. Done!
Yahoo!
1. Create key "Yahoo!"
2. Create value:
value name: URL
value type: string
value data: http://search.yahoo.com/search?p={searchTerms}
Yandex
1. Create key "Yandex"
2. Create value:
value name: URL
value type: string
value data: http://yandex.ru/msearch?text={searchTerms}
Remove built-in applications from saintonotole's firmware by vova1609
As you know, if you delete application, like Bazaar, this application will be installed again after reboot. I have found solution:
Local Machine/Software/OEM/FirstBoot/InstallApps
Delete folder InstallApps
Nice. What about local nachine/software/oem/cloaking/appreinstaller
Maybe this reinstalls deleted apps?
Sent from my Lumia 710 using XDA Windows Phone 7 App
Also can we find any battery tweaks, cause battery really sucks.
Sent from my Lumia 710 using XDA Windows Phone 7 App
mariosraptor said:
Nice. What about local nachine/software/oem/cloaking/appreinstaller
Maybe this reinstalls deleted apps?
Sent from my Lumia 710 using XDA Windows Phone 7 App
Click to expand...
Click to collapse
no
For very low brightness(tested on lumia 710)
Current User/Control Panel/Brightness
"LowBrightness"
Value= 1
1 is the lowest I have tried, I don't want to try 0 lol. Value is probably 1-100.
Battery performance FTW now.
Sb know how to change the vibration pattern? I always miss the incoming calls due to poor vibration level!
There's any way to change the boot splash screen? (Not the nokia logo)
I really searched for anything on registry or file system... but can't find anything
My phone is the Lumia 710
vova1609 said:
Your phone must be Full Unlocked!
Then you should install WP7 Root Tools.
Unlock the hidden options in the settings:
LOCAL MACHINE/System/Accessibility/
Code:
"CompactMode"=dword: 0
"TTY"=dword: 1
"telecoil UI"=dword: 1
"telecoil"=dword: 1
Change Search Engine in Internet Explorer by vova1609
CURRENT USER/Software/Microsoft/Internet Explorer/SearchProviders
Google:
1. Create key "Google"
2. Create value:
value name: URL
value type: string
value data: http://www.google.com/m?hl=en&gl=us&client=ms-hms-tmobile-us&q={searchTerms}
3. Done!
Yahoo!
1. Create key "Yahoo!"
2. Create value:
value name: URL
value type: string
value data: http://search.yahoo.com/search?p={searchTerms}
Yandex
1. Create key "Yandex"
2. Create value:
value name: URL
value type: string
value data: http://yandex.ru/msearch?text={searchTerms}
Remove built-in applications from saintonotole's firmware by vova1609
As you know, if you delete application, like Bazaar, this application will be installed again after reboot. I have found solution:
Local Machine/Software/OEM/FirstBoot/InstallApps
Delete folder InstallApps
Click to expand...
Click to collapse
I only try to do the first tweak but i don't see any change... I'm using a custom rom (Rataplan v3)
what about lumia 800 Music enhacement (vol boost or sth like that) has anyone tried to find something?
I'm preparing my phone for testpoint bootloader swap with ATF so I'll help u out soon ,try
to work on that cuz Original setup sucks 4 real
cdbase said:
what about lumia 800 Music enhacement (vol boost or sth like that) has anyone tried to find something?
I'm preparing my phone for testpoint bootloader swap with ATF so I'll help u out soon ,try
to work on that cuz Original setup sucks 4 real
Click to expand...
Click to collapse
yes, i also want to change the standard volume!
In my case, for this huge range of 30, its way too loud on 1, and way to quiet on 30. In between, you can't really hear a difference for example 23 and 24.
It would be awesome to change this.
Have anyone interested in disabling prediction and auto correct?
I just found that tweak today! (Changing some registy values myself)
Go to: Local Machine\System\Input
enter in the folder that corresponds your alnguage id (in my case is lang_0416 for Portuguese Brazilian)
add the string ".disable" in the end of the values of "Dictionary File" and "HTR Dictionary File" and restart your phone.
Next time you type something, you should not be bothered again with the prediction and auto correct.
Hi guys! You problems with the phone vibration ends here!
Access the phone registry and go to "Current User\Control Panel\SoundCategories\Ring"
First go to: RingerOffVibrateOn
and change script value to: av0.1v2.2w2r
Now go to: RingerOnVibrateOn
and change script value to: av0.1v2.1w0.1v1.pr
DONE!
Reboot isn't required. Call your phone and you will see the classic vibration while on silent.
Unfortunately the phone cannot vibrate and ring... Only vibrate, then ring.
---------- Post added at 09:55 AM ---------- Previous post was at 09:07 AM ----------
I don't know if i'm really helping here...
If you found out that your alarm volume is too low... You can go to in registry: "Current User\Control Panel\SoundCategories\Alarm\RingOnVibrateOn"
Change script to: p
yes... just "p" (that means PLAY)
it will not change the volume at all... it will just play in the same volume as your ringtone ^^

[ROM][RK3066/RK3188][SD/HD] Malaysk ROMs Android 4.4.4 for any yet known MTCB-Device

FOR RK3066
How to get to reсovery if you touch buttons - http://forum.xda-developers.com/showpost.php?p=65891188&postcount=2225​Special message for beginners now !! Before experimenting with firmware, Check to make first of all that you can to the factory firmware to get into reсovery standard methods described in the header or in the main posts that lined firmware and if something goes wrong, you will be able to return to their firmware.
Installing and configuring modules Xposed in pictures
Instructions for firmware the device RK3066 and RK3188 - View attachment 3828521 Thank @Oldpapa49
How to work the program TomTom Go - http://forum.xda-developers.com/and...lution-tomtom-connection-to-internet-t3368026
Screensaver with MPH speedometer - http://forum.xda-developers.com/showpost.php?p=66618696&postcount=3611
How to connect the program Easy Connected - http://forum.xda-developers.com/showpost.php?p=66305928&postcount=2978
How to Change the Ringtone - http://forum.xda-developers.com/showpost.php?p=66344944&postcount=3012
All of the latest firmware on the server http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20/KK%204.4.4%20Malaysk%20Custom%20ROMS%20/​
++++++++++++++++++++++++++++++++++++++++++++++++++++
If you like my firmware and think that I'm wasting a lot of time to improve the firmware, then click on the "Donate to Me"
++++++++++++++++++++++++++++++++++++++++++++++++++++
I'm sorry, translated Google
What is added, changed remotely:
1. In the embedded firmware ROOT, busybox.
2. After installing the firmware time zone 3 (Moscow), you can put third-party applications.
3. Section for systems with 1 GB of programs increased to 8 or 16 GB
4. Added an application for Internet radio PCRadio
5. Added a new section in the Settings-Screen, where you can set the screen saver, such as clock and when you click the Enable button in the panel Screensaver you have the entire screen is highlighted and will be visible only large clock, clicking anywhere on the screen will return to the desktop.
6. Completely reworked the button Reset in the status bar. Now the module is not needed.
Reboot menu has its own settings, and you can completely change it (color, language, what items will be displayed, etc.)
7. Added File Manager ES File Explorer
8. Added File Manager Root Explorer
9. Added Titanium Backup
10. Added ® Xposed. You will need to enter the program and activate Xposed framework (be sure to reboot the device)
11. Remade shutter notifications. Now music programs notification is displayed correctly.
12. A new item in Settings - Display -Change font. You can change the system font and its size.
The first font - the standard of the firmware (you can always come back to it)
13. The new boot logo (the very first - that appears when you download a few seconds)
14. The latest version of Google Play and Google Play Services
15. The latest version of voice search Google NOW
16. Added xposed module mtcradio (from MVG-V70) - When switched off, RDS RDS messages is displayed instead of the name of the radio station, which is taken from the configuration file mtc-radio.ini.
Also, the name is displayed on the buttons of your saved stations.
File must be located on the inner card catalog mts-radio. Utf-8 encoding without bom.
In Settings - Factory Settings - Other - disable RDS!!!
example file:
[controls]
title=true
buttons=true
# To display the names of the stations in the RDS information
[title]
90.80=Relax FM
101.70=Nashe Radio
88.30=Retro FM
# Short names for display stations in buttons
[buttons]
90.80=Relax
101.70=Nashe
88.30=Retro
Click to expand...
Click to collapse
17. Added to Settings - System - Manage traffic. Where you can enable, disable, change the color display in the curtain traffic notifications.
18. Added to Settings-System-density screen. Where you will be able to establish a suitable density of your screen.
19. Added to the Settings- System - Startup.
20. Changed the style and design of the system
21. Added a button in the notification curtain to reboot, reboot into recovery.
22. New launcher (Settings - Desktop) - KGL, KLD, JY, Next Launcher
23. Added converted widget RADIO
24. Added brightness adjustment in shutter notifications
25. Added panel programs curtain notifications. Configure or disable it in the settings-system-Quick Access Toolbar.
26. Changed the style and layout settings.
27. Added animation keystrokes.
28. Hours are enlarged and shifted next to the button is turned off.
29. Changed switches.
30. The OEM.apk application added to the application:
Car-Launcher
EasyConnected
MacroDroid
mtcsound_v16_7floor - who reworked the sound of the machine from a 7floor
MX Player
PPP Widget
Torque_v1.8.81(881)
Total_Commander-2.72
YouTube-11.07.59
31. Added a new section in the Settings-Data, where you can view all the traffic and the use of set limit its use.
32. When you first load a curtain notifications will be no clock. If you want them to go there appeared to Settings-System-style setting clock and date and there can enable-disable-change the color, location, size, font style, add the date, date format, and so on.
You can set your date format, an example of writing
dd / MM / yy
MM / dd / yy
yyyy-MM-dd
yyyy-dd-MM
dd-MM-yyyy
MM-dd-yyyy
MMM dd
MMMM dd, yyyy - will appear as February 1, 2015
MMMM dd, yyyy
EEE
EEE dd
EEE dd / MM
EEE MM / dd
EEE dd MMM
EEE MMM dd
EEE MMMM dd - will be displayed as the sun FEBRUARY 01
EEEE MMMM dd - will appear as Sunday February 01
EEEE dd / MM
EEEE MM / dd
Click to expand...
Click to collapse
That is how you want to change the letters in writing, and will display the date. Customize the date format in the format user-JAVA
33. Added gradient Status Bar (Settings - System)
34. A new panel ext. programs and recently run (Settings - System)
35. Added new tab in Preferences - Advanced Settings screen (think there will understand)
36. The equalizer settings completely redesigned
37. Added xposed module to retract full-screen keyboard - xposed.disablefullscreenkeyboard_v1_53
38. The Settings altered the whole point - Accessibility (there were services and other items)
39. Reworked almost all full-time program under all permits including programs such as
Launcher
MTCATV
MTCAVIN
MTCBackView
MTCBlueTooth
MTCCanbus
MTCDVD
MTCMovie
MTCMusic
MTCRadio
MTCTravel
MTCWeather
Setting.
40. Added to Settings-System-Remote system applications (now possible without having to install additional software to delete system applications directly from Settings)
41. Added to Settings-Decoration-Animation pop-up notifications. Look on Youtube https://www.youtube.com/watch?v=EV5nrC0HHSA
42. ​​Added to Settings - Decoration - Management gestures. Now you can draw anywhere gesture on the screen (which you have set in the settings) and run, what you have specified. You can run almost everything ... even hidden in the system, applications, shortcuts, everything from Tasker, etc. More clearly look at the Youtube https://www.youtube.com/watch?v=m0uom2WXw-4
43. subtracting twice the regular volume control and made him taking away almost immediately after the increase or decrease the volume.
44. Posted in Settings - Modem settings and the APN
45. Added change the font size settings
46. Change the whole style and design popups
47. Added button in the screensaver shutter notifications
48. Changed call when an incoming call bluetooth connection. The call can be listened here - https://yadi.sk/d/5r0idzg1kt6ic
49. Reworked the entire section in the Settings responsible for WiFi. For best performance, WiFi recommend to go to Settings-WiFi-Advanced Settings and disable the optimization WiFi.
50. Fixed a graphical interface system (the color in some programs were displayed incorrectly)
51. In Settings - Restore and Reset - appears - Recovery mode (restart in Recovery)
52. Added to Settings-System-Modification Buld.prof (for experienced users only !!!)
53. Added to Settings-Information section, where you can immediately see how much is left of free space, the size of all partitions in the system (System, Data, SD card and USB drive)
54. Added to Settings-Decoration-scrolling animation.
55. Added to the Settings section for developers.
56. included in the firmware program MTC Service
57. NEW True Contacts for calls via Bluetooth. if you have a phone on Android, we do import your contacts to the memory card, then transferred to our State this file to the internal memory, go to True Contacts and do already export contacts.
58. Added Xposed module Malaysk StatusBar Mod (Thanks agentdr8 [/ b]) which does the following:
1. Clean up / add to the status bar icon skrinsevera - hours - which in the past was painted as the moon
2. Clean up / add to the status bar icon menu, reset (which in the upper right corner)
3. You can disconnect from the reset button - Short press, ie It will work only 3-5 seconds of pressing the button and the call menu only.
59. Added a module for Xposed from MVG-V70 with Russian Forum (I thank him very much for the good job) mtc-keys, which allows action to remap the buttons radio.
60. Added to Settings-System-Ad Blocking.
61. Changed the status bar and notification blind.
62. Completely reworked the button Reset in the status bar. Now the module is not needed. Reboot menu has its own settings, and you can completely change it (color, language, what items will be displayed, etc.) [/COLOR]
Watch screenshots :
http://forum.xda-developers.com/showpost.php?p=65871908&postcount=2179
63. Remade shutter notifications. Now music programs notification is displayed correctly.
64. For a screen resolution of 800X480 redesigned program internet radio - PCRadio
65. A new item in Settings - Display -Change font. You can change the system font and its size. The first font - the standard of the firmware (you can always come back to it)
66. Added new launcher from the android 5.1.1 - changes and modified by me (showing the vehicle speed) - it is possible to choose in the Settings - Desktop.
67. Added new module for Xposed gps-mtc-launcher , you must activate it in Xposed. Be sure to copy the mtc-launcher folder on GPS - card (available in the archive)
68. Changed all sound output and added special ViperFX.
http://forum.xda-developers.com/showthread.php?p=66972918#post66972918
69. Press the button on the moon in the status bar, you can always run skrinsever.
70. The OEM application added to skrinsever's and one theme .
71. The OEM application added a program to change the serial number - Phone Id Changer
Do not forget: After firmware - activate Xposed, modules for Xposed and the copy settings to the SD card (gps card).
If someone does not like launching skrinsever in other applications, it can stop an skrinsever in other applications in the settings - external_sd/mtc-manager/settings.ini
screenClock = true change on screenClock = false
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
VIDEO
VIDEO
VIDEO
VIDEO
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
New from August 15, 2017 for RK3066 800X480
https://forum.xda-developers.com/showpost.php?p=70647239&postcount=6748
New from July 22, 2018 for RK3066 800X480
https://forum.xda-developers.com/showpost.php?p=70647239&postcount=6748
______________
Firmware archive on the server
http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20Malaysk/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
For 1024X600​++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Only for 1024X600 , programs of the firmware on June 9, JY --- for all resolutions dpi - http://forum.xda-developers.com/showpost.php?p=61576319&postcount=15104
Only for 1024X600 , program in red tones --- for all resolutions dpi - http://forum.xda-developers.com/showpost.php?p=61599827&postcount=15195
The default is the density of the screen 230 dpi
Do not put the screen density of 240 dpi !!!
____________________________________________________________
New from 19 July 2020 from RK3066 800X480 - https://forum.xda-developers.com/showpost.php?p=83114239&postcount=9047
======================================================================================
Video Faq Tuning NEXT Launcher in Russian
Part 1 http://www.youtube.com/watch?v=jftK_lnmP20
Part 2 http://www.youtube.com/watch?v=Hdn2csJYerU
A small video latest firmware update_4_4_4_800X480_RK3066_19_MAL_NEXT_LAUNCHER_11_05_2015
https://www.youtube.com/watch?v=Xb7pjkaTQSc
----------------------------------------------------------------------------------------------------------------------------------------
RK3188
This firmware is NOT compatible with devices MTCD android 5.1.1 - http://forum.xda-developers.com/android-auto/mtcd-discussion-questions-development
FOR RK3188
How to get to recovery if you touch buttons - http://forum.xda-developers.com/showpost.php?p=65891188&postcount=2225​Special message for beginners now !! Before experimenting with firmware, Check to make first of all that you can to the factory firmware to get into recovery standard methods described in the header or in the main posts that lined firmware and if something goes wrong, you will be able to return to their firmware.
Installing and configuring modules Xposed in pictures
Instructions for firmware the device RK3066 and RK3188 - View attachment 3828522 Thank @Oldpapa49
How to work the program TomTom Go - http://forum.xda-developers.com/and...lution-tomtom-connection-to-internet-t3368026
Screensaver with MPH speedometer - http://forum.xda-developers.com/showpost.php?p=66618696&postcount=3611
How to connect the program Easy Connected - http://forum.xda-developers.com/showpost.php?p=66305928&postcount=2978
How to Change the Ringtone - http://forum.xda-developers.com/showpost.php?p=66344944&postcount=3012​All of the latest firmware on the server http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20/KK%204.4.4%20Malaysk%20Custom%20ROMS%20/​
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
If you like my firmware and think that I'm wasting a lot of time to improve the firmware, then click on the "Donate to Me"
++++++++++++++++++++++++++++++++++++++++++++++++++++
In this post, I will lay out firmware RK3188​I'm sorry, translated Google
What is added, changed remotely:
1. In the embedded firmware ROOT, busybox.
2. After installing the firmware time zone 3 (Moscow), you can put third-party applications.
3. Section for systems with 1 GB of programs increased to 8 or 16 GB
4. Added an application for Internet radio PCRadio
5. Added a new section in the Settings-Screen, where you can set the screen saver, such as clock and when you click the Enable button in the panel Screensaver you have the entire screen is highlighted and will be visible only large clock, clicking anywhere on the screen will return to the desktop.
6. Completely reworked the button Reset in the status bar. Now the module is not needed.
Reboot menu has its own settings, and you can completely change it (color, language, what items will be displayed, etc.)
7. Added File Manager ES File Explorer
8. Added File Manager Root Explorer
9. Added Titanium Backup
10. Added ® Xposed. You will need to enter the program and activate Xposed framework (be sure to reboot the device)
11. Remade shutter notifications. Now music programs notification is displayed correctly.
12. A new item in Settings - Display -Change font. You can change the system font and its size.
The first font - the standard of the firmware (you can always come back to it)
13. The new boot logo (the very first - that appears when you download a few seconds)
14. The latest version of Google Play and Google Play Services
15. The latest version of voice search Google NOW
16. Added xposed module mtcradio (from MVG-V70) - When switched off, RDS RDS messages is displayed instead of the name of the radio station, which is taken from the configuration file mtc-radio.ini.
Also, the name is displayed on the buttons of your saved stations.
File must be located on the inner card catalog mts-radio. Utf-8 encoding without bom.
In Settings - Factory Settings - Other - disable RDS!!!
example file:
[controls]
title=true
buttons=true
# To display the names of the stations in the RDS information
[title]
90.80=Relax FM
101.70=Nashe Radio
88.30=Retro FM
# Short names for display stations in buttons
[buttons]
90.80=Relax
101.70=Nashe
88.30=Retro
Click to expand...
Click to collapse
17. Added to Settings - System - Manage traffic. Where you can enable, disable, change the color display in the curtain traffic notifications.
18. Added to Settings-System-density screen. Where you will be able to establish a suitable density of your screen.
19. Added to the Settings- System - Startup.
20. Changed the style and design of the system
21. Added a button in the notification curtain to reboot, reboot into recovery.
22. New launcher (Settings - Desktop) - KGL, KLD, JY, Next Launcher
23. Added converted widget RADIO
24. Added brightness adjustment in shutter notifications
25. Added panel programs curtain notifications. Configure or disable it in the settings-system-Quick Access Toolbar.
26. Changed the style and layout settings.
27. Added animation keystrokes.
28. Hours are enlarged and shifted next to the button is turned off.
29. Changed switches.
30. The OEM.apk application added to the application:
Car-Launcher
EasyConnected
MacroDroid
mtcsound_v16_7floor - who reworked the sound of the machine from a 7floor
MX Player
PPP Widget
Torque_v1.8.81(881)
Total_Commander-2.72
YouTube-11.07.59
31. Added a new section in the Settings-Data, where you can view all the traffic and the use of set limit its use.
32. When you first load a curtain notifications will be no clock. If you want them to go there appeared to Settings-System-style setting clock and date and there can enable-disable-change the color, location, size, font style, add the date, date format, and so on.
You can set your date format, an example of writing
dd / MM / yy
MM / dd / yy
yyyy-MM-dd
yyyy-dd-MM
dd-MM-yyyy
MM-dd-yyyy
MMM dd
MMMM dd, yyyy - will appear as February 1, 2015
MMMM dd, yyyy
EEE
EEE dd
EEE dd / MM
EEE MM / dd
EEE dd MMM
EEE MMM dd
EEE MMMM dd - will be displayed as the sun FEBRUARY 01
EEEE MMMM dd - will appear as Sunday February 01
EEEE dd / MM
EEEE MM / dd
Click to expand...
Click to collapse
That is how you want to change the letters in writing, and will display the date. Customize the date format in the format user-JAVA
33. Added gradient Status Bar (Settings - System)
34. A new panel ext. programs and recently run (Settings - System)
35. Added new tab in Preferences - Advanced Settings screen (think there will understand)
36. The equalizer settings completely redesigned
37. Added xposed module to retract full-screen keyboard - xposed.disablefullscreenkeyboard_v1_53
38. The Settings altered the whole point - Accessibility (there were services and other items)
39. Reworked almost all full-time program under all permits including programs such as
Launcher
MTCATV
MTCAVIN
MTCBackView
MTCBlueTooth
MTCCanbus
MTCDVD
MTCMovie
MTCMusic
MTCRadio
MTCTravel
MTCWeather
Setting.
40. Added to Settings-System-Remote system applications (now possible without having to install additional software to delete system applications directly from Settings)
41. Added to Settings-Decoration-Animation pop-up notifications. Look on Youtube https://www.youtube.com/watch?v=EV5nrC0HHSA
42. ​​Added to Settings - Decoration - Management gestures. Now you can draw anywhere gesture on the screen (which you have set in the settings) and run, what you have specified. You can run almost everything ... even hidden in the system, applications, shortcuts, everything from Tasker, etc. More clearly look at the Youtube https://www.youtube.com/watch?v=m0uom2WXw-4
43. subtracting twice the regular volume control and made him taking away almost immediately after the increase or decrease the volume.
44. Posted in Settings - Modem settings and the APN
45. Added change the font size settings
46. Change the whole style and design popups
47. Added button in the screensaver shutter notifications
48. Changed call when an incoming call bluetooth connection. The call can be listened here - https://yadi.sk/d/5r0idzg1kt6ic
49. Reworked the entire section in the Settings responsible for WiFi. For best performance, WiFi recommend to go to Settings-WiFi-Advanced Settings and disable the optimization WiFi.
50. Fixed a graphical interface system (the color in some programs were displayed incorrectly)
51. In Settings - Restore and Reset - appears - Recovery mode (restart in Recovery)
52. Added to Settings-System-Modification Buld.prof (for experienced users only !!!)
53. Added to Settings-Information section, where you can immediately see how much is left of free space, the size of all partitions in the system (System, Data, SD card and USB drive)
54. Added to Settings-Decoration-scrolling animation.
55. Added to the Settings section for developers.
56. included in the firmware program MTC Service
57. NEW True Contacts for calls via Bluetooth. if you have a phone on Android, we do import your contacts to the memory card, then transferred to our State this file to the internal memory, go to True Contacts and do already export contacts.
58. Added Xposed module Malaysk StatusBar Mod (Thanks agentdr8 [/ b]) which does the following:
1. Clean up / add to the status bar icon skrinsevera - hours - which in the past was painted as the moon
2. Clean up / add to the status bar icon menu, reset (which in the upper right corner)
3. You can disconnect from the reset button - Short press, ie It will work only 3-5 seconds of pressing the button and the call menu only.
59. Added a module for Xposed from MVG-V70 with Russian Forum (I thank him very much for the good job) mtc-keys, which allows action to remap the buttons radio.
60. Added to Settings-System-Ad Blocking.
61. Changed the status bar and notification blind.
62. Completely reworked the button Reset in the status bar. Now the module is not needed. Reboot menu has its own settings, and you can completely change it (color, language, what items will be displayed, etc.) [/COLOR]
Watch screenshots :
http://forum.xda-developers.com/showpost.php?p=65871908&postcount=2179
63. Remade shutter notifications. Now music programs notification is displayed correctly.
64. For a screen resolution of 800X480 redesigned program internet radio - PCRadio
65. A new item in Settings - Display -Change font. You can change the system font and its size. The first font - the standard of the firmware (you can always come back to it)
66. Added new launcher from the android 5.1.1 - changes and modified by me (showing the vehicle speed) - it is possible to choose in the Settings - Desktop.
67. Added new module for Xposed gps-mtc-launcher , you must activate it in Xposed. Be sure to copy the mtc-launcher folder on GPS - card (available in the archive)
68. Changed all sound output and added special ViperFX.
http://forum.xda-developers.com/showthread.php?p=66972918#post66972918
69. Press the button on the moon in the status bar, you can always run skrinsever.
70. The OEM application added to skrinsever's and one theme .
71. The OEM application added a program to change the serial number - Phone Id Changer
Do not forget: After firmware - activate Xposed, modules for Xposed and the copy settings to the SD card (gps card).
If someone does not like launching skrinsever in other applications, it can stop an skrinsever in other applications in the settings - external_sd/mtc-manager/settings.ini
screenClock = true change on screenClock = false
++++++++++++++++++++++++++++++++++++++++++++++++++
VIDEO
VIDEO
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
For 800X480​+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NEW on June 12, 2016
Only for RK3188 800X480
http://forum.xda-developers.com/showthread.php?p=67280169#post67280169
______________
New from October 11, 2016 for RK3188 800X480 (18 version)
Strongly recommend to do after installation recovery Wipe Data (penultimate paragraph) because it has changed the location of the system software in the partition is not the system (now all the additional applications and launchers safely removed from the Settings -. Applications if you do not need)
1. Updated Bluetooth program - you can now search for contact names in any language. In the settings you can enter any name is now OBD. All Bluetooth app with a different color scheme in the updated application OEM.
2. All additional programs and launchers can now be removed by standard methods in Settings - Applications.
3. Updated all Google services
4. Module for Xposed MalayskStatusBar removed.
5. Xposed Run now in the Settings - Xposed.
6. Added new module for Xposed - mtc-statusbar (do not forget to activate it in the Xposed). Settings are in his mtc-statusbar folder and are called status_bar.ini.
This folder must be copied to the SD card sd_external (GPS sd card). The folder is included in the archive. Here are his settings that you can configure:
status_bar.ini
# Show/Hide entire the StatusBar
# Показать/Скрыть весь статусбар
# true - Hide : false - Show
# true - Скрыть : false - Показать
status_bar=false
#--------------------------------------------------
# Show/Hide Home button
# Показать/Скрыть кнопку Домой
# true - Hide : false - Show
# true - Скрыть : false - Показать
home=true
#--------------------------------------------------
# Show/Hide app
# Показать/Скрыть приложения
# true - Hide : false - Show
# true - Скрыть : false - Показать
app=false
#--------------------------------------------------
# Show/Hide screenshot button
# Показать/Скрыть кнопку Скриншота
# true - Hide : false - Show
# true - Скрыть : false - Показать
screenshot=false
#--------------------------------------------------
# Show/Hide Back button
# Показать/Скрыть кнопку Назад
# true - Hide : false - Show
# true - Скрыть : false - Показать
back=true
#--------------------------------------------------
# Show/Hide volume panel
# Показать/Скрыть иконку громкости
# true - Hide : false - Show
# true - Скрыть : false - Показать
volume=true
#--------------------------------------------------
# Show/Hide eject DVD icon
# Показать/Скрыть иконку выдвижения DVD диска
# true - Hide : false - Show
# true - Скрыть : false - Показать
eject=true
#--------------------------------------------------
# Show/Hide screen brightness icon in statusbar
# Показать/Скрыть иконку затемнения экрана
# true - Hide : false - Show
# true - Скрыть : false - Показать
screenbrightness=true
#--------------------------------------------------
# Power icon
# Иконка Перезагрузки
# true - Hide : false - Show
# true - Скрыть : false - Показать
syslock=false
#--------------------------------------------------
# Show/Hide screensaver button
# Показать/Скрыть иконку Заставки (Луна) в СтатусБаре
# true - Hide : false - Show
# true - Скрыть : false - Показать
deskclock=false
#--------------------------------------------------
# Show/Hide name of the running program
# Показать/Скрыть название запущенной программы
# true - Hide : false - Show
# true - Скрыть : false - Показать
notification_lights_out=false
#--------------------------------------------------
# Show/Hide icons running services in statusbar
# Показать/Скрыть иконки запущенных сервисов
# true - Hide : false - Show
# true - Скрыть : false - Показать
notificationIcons=false
#--------------------------------------------------
# Show/Hide system icons (eg WiFi, GPS, 3G and other)
# Показать/Скрыть системные иконки ( например WiFi, GPS, 3G и других )
# true - Hide : false - Show
# true - Скрыть : false - Показать
system_icon_area=false
#--------------------------------------------------
7. New: Settings - Sidebar
8. New: Added the latest version ViPER FX (launch Settings - ViPER FX)
9. launchers updated to the latest versions.
10. Added the latest jetAudio peredelany me completely. (Can be removed in the Settings - Applications)
11. Removed hidden Root access and have the latest SuperSU (some programs incorrectly worked with hidden as root)
12. Fixed replacing the system font in Settings - System - Select the font.
13. Fixed setup notifications in Settings - Display.
14. Updated and added app to the OEM - App
15. Other.
Download: https://yadi.sk/d/mUpkLVZPwdHA2
____________________________________________________________
New from January 21th, 2017 for RK3188 800X480 (20 version)
https://forum.xda-developers.com/showpost.php?p=70647239&postcount=6748
______________
Firmware archive on the server
http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20Malaysk/
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
For 1024X600​+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NEW on June 12, 2016
Only for RK3188 1024X600
http://forum.xda-developers.com/showthread.php?p=67280169#post67280169
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
New from October 11, 2016 for RK3188 1024X600 (20 version)
Strongly recommend to do after installation recovery Wipe Data (penultimate paragraph) because it has changed the location of the system software in the partition is not the system (now all the additional applications and launchers safely removed from the Settings -. Applications if you do not need)
1. Updated Bluetooth program - you can now search for contact names in any language. In the settings you can enter any name is now OBD. All Bluetooth app with a different color scheme in the updated application OEM.
2. All additional programs and launchers can now be removed by standard methods in Settings - Applications.
3. Updated all Google services
4. Module for Xposed MalayskStatusBar removed.
5. Xposed Run now in the Settings - Xposed.
6. Added new module for Xposed - mtc-statusbar (do not forget to activate it in the Xposed). Settings are in his mtc-statusbar folder and are called status_bar.ini.
This folder must be copied to the SD card sd_external (GPS sd card). The folder is included in the archive. Here are his settings that you can configure:
status_bar.ini
# Show/Hide entire the StatusBar
# Показать/Скрыть весь статусбар
# true - Hide : false - Show
# true - Скрыть : false - Показать
status_bar=false
#--------------------------------------------------
# Show/Hide Home button
# Показать/Скрыть кнопку Домой
# true - Hide : false - Show
# true - Скрыть : false - Показать
home=true
#--------------------------------------------------
# Show/Hide app
# Показать/Скрыть приложения
# true - Hide : false - Show
# true - Скрыть : false - Показать
app=false
#--------------------------------------------------
# Show/Hide screenshot button
# Показать/Скрыть кнопку Скриншота
# true - Hide : false - Show
# true - Скрыть : false - Показать
screenshot=false
#--------------------------------------------------
# Show/Hide Back button
# Показать/Скрыть кнопку Назад
# true - Hide : false - Show
# true - Скрыть : false - Показать
back=true
#--------------------------------------------------
# Show/Hide volume panel
# Показать/Скрыть иконку громкости
# true - Hide : false - Show
# true - Скрыть : false - Показать
volume=true
#--------------------------------------------------
# Show/Hide eject DVD icon
# Показать/Скрыть иконку выдвижения DVD диска
# true - Hide : false - Show
# true - Скрыть : false - Показать
eject=true
#--------------------------------------------------
# Show/Hide screen brightness icon in statusbar
# Показать/Скрыть иконку затемнения экрана
# true - Hide : false - Show
# true - Скрыть : false - Показать
screenbrightness=true
#--------------------------------------------------
# Power icon
# Иконка Перезагрузки
# true - Hide : false - Show
# true - Скрыть : false - Показать
syslock=false
#--------------------------------------------------
# Show/Hide screensaver button
# Показать/Скрыть иконку Заставки (Луна) в СтатусБаре
# true - Hide : false - Show
# true - Скрыть : false - Показать
deskclock=false
#--------------------------------------------------
# Show/Hide name of the running program
# Показать/Скрыть название запущенной программы
# true - Hide : false - Show
# true - Скрыть : false - Показать
notification_lights_out=false
#--------------------------------------------------
# Show/Hide icons running services in statusbar
# Показать/Скрыть иконки запущенных сервисов
# true - Hide : false - Show
# true - Скрыть : false - Показать
notificationIcons=false
#--------------------------------------------------
# Show/Hide system icons (eg WiFi, GPS, 3G and other)
# Показать/Скрыть системные иконки ( например WiFi, GPS, 3G и других )
# true - Hide : false - Show
# true - Скрыть : false - Показать
system_icon_area=false
#--------------------------------------------------
7. New: Settings - Sidebar
8. New: Added the latest version ViPER FX (launch Settings - ViPER FX)
9. launchers updated to the latest versions.
10. Added the latest jetAudio peredelany me completely. (Can be removed in the Settings - Applications)
11. Removed hidden Root access and have the latest SuperSU (some programs incorrectly worked with hidden as root)
12. Fixed replacing the system font in Settings - System - Select the font.
13. Fixed setup notifications in Settings - Display.
14. Updated and added app to the OEM - App
15. Other.
The default is the density of the screen 200 dpi
Do not put the screen density of 240 dpi !!!
Download: https://yadi.sk/d/R-5e8eSxwdH9n
____________________________________________________________
New from January 21th, 2017 for RK3188 1024X600 (21 version)
https://forum.xda-developers.com/showpost.php?p=70647239&postcount=6748
New from February 18, 2017 for RK3188 1024X600 (23 version)
https://forum.xda-developers.com/showpost.php?p=70647239&postcount=6748
New from August 15, 2017 for RK3188 1024X600 (24 version)
https://forum.xda-developers.com/showpost.php?p=70647239&postcount=6748
______________
Firmware archive on the server
[URL="http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20/KK%204.4.4%20Malaysk%20Custom%20ROMS%20/"]http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20/KK%204.4.4%20Malaysk%20Custom%20ROMS%20/
++++++++++++++++++++++++++++++++++++++++++++++++
Screensavers
NEW screensavers a speed determination by GPS on May 5, 2016 HERE - http://forum.xda-developers.com/showpost.php?p=66708599&postcount=3754
NEW Analog screensavers HERE - http://forum.xda-developers.com/showpost.php?p=64848760&postcount=873
NEW Digital screensavers HERE - http://forum.xda-developers.com/showpost.php?p=64866454&postcount=886
Screensavers for DUK​Included in the "Settings / Display / Time-out" setting the time delay. Triggered when working full-time applications, Radio, Music, Handsfree Settings. Also on the desktop in a normal launcher. The next-launcher on the desktop is not included, as it believes its third-party applications.
Installed by replacing the system file in the folder MTCScreenClock.apk system/app program RootExplorer, with setting the appropriate rights.
Remove the names of the letters W-R-G-B
______________________________________________
View attachment MTCScreenClockB.apk
______________________________________________
View attachment MTCScreenClockG.apk
______________________________________________
View attachment MTCScreenClockR.apk
______________________________________________
View attachment MTCScreenClockW.apk
______________________________________________
Remove the names of the letters 3-4
View attachment MTCScreenClock3.apk
_____________________________________________
View attachment MTCScreenClock4.apk
_____________________________________________
Remove the names of the letters W1-R1-G1-B1
View attachment MTCScreenClockW1.apk
_____________________________________________
View attachment MTCScreenClockR1.apk
_____________________________________________
View attachment MTCScreenClockG1.apk
_____________________________________________
View attachment 3561223
View attachment MTCScreenClockB1.apk
Applications in different color themes and design
The new launcher from JY (Android 5.1.1) April 30, 2016​1. Changed the full name of the launcher, you can now simply copy the folder System/Priv-app or set as a normal application.
2. Removed garbage - now the application takes 11 MB (was 95 mb)
3. Layncher modified to allow 800X480 (1024 was all good)
4. Added the weather on the main screen.
5. Other corrections and additions.
http://forum.xda-developers.com/showpost.php?p=66620979&postcount=3612
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Modified regular application New from April 30, 2016
Rufous​Screenshots and download here​
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Modified regular application New from April 14, 2016
Blue​Screenshots and download here​
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Modified regular application New from April 15, 2016
Red​Screenshots and download here​
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
who use the music player jetAudio Plus
Completely redesigned and adapted the program for our devices, including all the widgets (about 20-s) and color scheme for their latest firmware.
This was done and tested at a resolution of 800X480.
View attachment jetAudio_Plus_v6.5.1.apk
The new version 7.0 - http://forum.xda-developers.com/showpost.php?p=65906614&postcount=2275
++++++++++++++++++++++++++++++++++++
Applications and Launcher of the latest firmware KLD in red colors.
for 1024X600 and 800X480
All redone for all screen resolutions.
Remove the old version ( MTCBlueTooth, MTCDVD, MTCMovie, MTCMusic and MTCRadio) and copy files program Root Explorer in folder System/app
MTCBlueTooth,
MTCDVD,
MTCMovie,
MTCMusic,
MTCRadio
The launcher replace folder System/Priv-app !!!
Download: http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20Malaysk/Native%20app/RED%20KLD/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Modified regular application of firmware JY red-black.
FOR 1024x600 and 800X480​Thanks Duk for their work and assistance.
Download: http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20Malaysk/Native%20app/RED%20JY/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Modified regular application of firmware JY Blue-Beautiful.
FOR 1024x600 and 800X480​
Download: http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20Malaysk/Native%20app/BLUE%20JY/Beautiful/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Modified regular application of firmware JY Blue-Strict.
FOR 1024x600 and 800X480​
Download: http://huifei.fs-fileserver.de/content/firmware/KK%204.4.4%20Custom%20ROMS%20Malaysk/Native%20app/BLUE%20JY/The%20strict/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
This might be my unit, but it seems like i have to press the home button twice in order to get to the home screen. Is there something that I need to do to fix this?
am i stupid or there doesnt exist old thread where was more then 2100 site of replys?
Yes it's closed and we now have this dedicated forum.
Installation Instructions
Hi, I've searched but cannot find the instructions on how to install the Malaysk ROM. Should I follow the steps used to update the OEM firmware using the stock Recovery? Do I need to select the "...clear all" menu option? I recently purchased the Joying Quad Core, 1024X600 RK3188 unit but all my attempts to update the stock firmware have failed. I keep getting the message: "E:\ Can't open /mnt/external_sd/update.img. Can not found firmware image or invalid image...". I've tried different micro SD cards and I've attempted to use the USB update method. All have failed in the same manner. I grabbed the various different versions of the firmware from carjoying.com, all have failed in the same way also. Any help would be greatly appreciated.
Update: I just realized there is a second MicroSD slot on the unit. The included 8GB MicroSD was pre-installed and so with the lighting on my workbench, I didn't see the second slot. So, using that slot, updating works fine.
Yes, it's in the idiot's guide. I boot into recovery and update from the sd card.
---------- Post added at 05:39 PM ---------- Previous post was at 05:35 PM ----------
Hey, when will the latest rom be on the server? It looks like the last rom on the server is from August.
As a poster with over 500 posts to your name.. What's a golden rule on XDA?...
Let me remind you....
Never, never ask a developer for a ETA of an update... And if you do...
Don't you think... Hey.. When is... A bit rude?
As at the moment we only have Malaysk as a ROM developer/ tweaker, don't go pissing him off demanding ETA's..
When a chief bakes... He bakes.. Until then just eat the cookies already available or start baking yourself...
Sent from my TF300T using Tapatalk
Hi. The app easy connect install on the phone the Other app yijia but when starts ask for update and then crash
Someone has 1.5.22 apk?
Inviato dal mio SM-G920F utilizzando Tapatalk
Oktober rom seems to be gone from the webserver, http://huifei.fs-fileserver.de/content/firmware/KK 4.4.4 Custom ROMS Malaysk/
huifei RK3188 android 4.4.4 radio audi a4 2002
if i only play the navigation, it’s no problem.
if i only play the radio, it’s no problem
if i play the radio and the navigation together, the radio stopts about 10 minutes. the navigation still working.
if i play radio, navigition and dash cam, the dash cam stopts after one minute.
it seems like the radio, nav and dash cam not working together.
what can i do??
treech said:
Oktober rom seems to be gone from the webserver, http://huifei.fs-fileserver.de/content/firmware/KK 4.4.4 Custom ROMS Malaysk/
Click to expand...
Click to collapse
Still available from Mega, see post #2
http://forum.xda-developers.com/showpost.php?p=60591423&postcount=2
Hi, I just picked up a single-DIN RK3188 Android. Lots of questions
My system info is:
http://www.amazon.com/gp/product/B014J88PDM
Am I correct in presuming that the Sept 20 build is slightly newer than what I have?
Also, since my MCU is pretty new, I assume I don't have to update it?
New to the whole head unit thing. Any gotchas I should know about with flashing?
Also, not related to flashing. The radio doesn't have hardware home or back buttons. This is a problem when apps go full screen, it can be VERY frustrating trying to pull from the top to get the status bar to appear just to go to the home screen. Is there a simple way to program the DVD button or NAVI button as home/back buttons?
You could look at setting up LMK pie.. I have it for that reason.. Just gives me a bit more access.. But I think it might need the rom to be rooted..which if you read through the wiki and FAQs you should find the codes for it..
update_4_4_4_1024X600_7_RK3188_MAL_NEXT_LAUNCHER_0 9_09_2015
Hello
* the ram with the skin? Picture # 10
bigbadwolf88 said:
Hi, I've searched but cannot find the instructions on how to install the Malaysk ROM. Should I follow the steps used to update the OEM firmware using the stock Recovery? Do I need to select the "...clear all" menu option? I recently purchased the Joying Quad Core, 1024X600 RK3188 unit but all my attempts to update the stock firmware have failed. I keep getting the message: "E:\ Can't open /mnt/external_sd/update.img. Can not found firmware image or invalid image...". I've tried different micro SD cards and I've attempted to use the USB update method. All have failed in the same manner. I grabbed the various different versions of the firmware from carjoying.com, all have failed in the same way also. Any help would be greatly appreciated.
Update: I just realized there is a second MicroSD slot on the unit. The included 8GB MicroSD was pre-installed and so with the lighting on my workbench, I didn't see the second slot. So, using that slot, updating works fine.
Click to expand...
Click to collapse
Can you post model number and a picture of your HU ? I'm in the market for a new unit with the quad core 1024*600 and I really want to get an unit that it is known that can be rooted / modded.
Also trying to find a unit in which the sub-woofer level can be adjusted on the screen.
Thanks
Is something wrong with the server? It looks like the last roms are from August
kruuth said:
Is something wrong with the server? It looks like the last roms are from August
Click to expand...
Click to collapse
Seems to be on Mega?
See post #2
http://forum.xda-developers.com/showpost.php?p=60591423&postcount=2
Don't use the link at the top of the post use the link specific for your unit.

[App] DHT Accent Generator - Generate Own Tile Color

Here you can find new version of this app :
https://forum.xda-developers.com/wi...tion-dynamically-manage-t3563949/post71203232
Hi there everyone .
Here is a new app from DHT that makes you able to generate your own tile color .
This app help you in creating your own Tile Color and it's easy to use .
first of all thanks goes to @Ferrybigger Author of thread below :
https://forum.xda-developers.com/windows-10-mobile/how-add-black-accent-color-t3543692
How to use :
-MainPage :
In MainPage you have to first select the color you want for your Tile . (An integer value always generate by the color you select)
After finding a good Color in the Color Preview at the top of application Tap on Copy and go to step *.
-Advanced Page :
type R , G and B values from the color you want . an Integer value will be generated and automatically will be copied to your clipboard ! go to step *:
* : Now use of Registry editors to paste the generated value in to the registry path below :
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Control Panel\Theme\Themes
SpecialColor
if you don't have the specialcolor value add a new DWord registry type and name it SpecialColor and paste value in it .
After setting value go to settings -> Personalization -> Colors and choose the latest accent color .
Note : Before changing SpecialColor value you have to choose a different Accent Color . if you have the SpecialColor selected you can't change the color .
Algorithm : (How to generate Color Codes)
-The Algorithm is very simple .
Step 1 : Change R value with B . (Input Color (1,2,3) -> (3,2,1))
So now you have color in BGR format .
Step 2 : Convert Hex code of color to integer using Int64.Parse
Source Code in C# :
Code:
var Col = ColorPicker.Color;
var tempcol = Col;
Col.R = tempcol.B;
Col.B = tempcol.R;
var Output = Int64.Parse(Col.ToString().Replace("#", string.Empty), System.Globalization.NumberStyles.HexNumber).ToString();
Suggested Color Codes :
MahGraphic Ghost : 4290289538
Feel free to share beautiful colors here with us .
We will add your colors here .
Have Fun .
ngame said:
Hi there everyone .
Here is a new app from DHT that makes you able to generate your own tile color .
This app help you in creating your own Tile Color and it's easy to use .
first of all thanks goes to @Ferrybigger Author of thread below :
https://forum.xda-developers.com/windows-10-mobile/how-add-black-accent-color-t3543692
How to use :
-MainPage :
In MainPage you have to first select the color you want for your Tile . (An integer value always generate by the color you select)
After finding a good Color in the Color Preview at the top of application Tap on Copy and go to step *.
-Advanced Page :
type R , G and B values from the color you want . an Integer value will be generated and automatically will be copied to your clipboard ! go to step *:
* : Now use of Registry editors to paste the generated value in to the registry path below :
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Control Panel\Theme\Themes
SpecialColor
if you don't have the specialcolor value add a new DWord registry type and name it SpecialColor and paste value in it .
After setting value go to settings -> Personalization -> Colors and choose the latest accent color .
Note : Before changing SpecialColor value you have to choose a different Accent Color . if you have the SpecialColor selected you can't change the color .
Algorithm : (How to generate Color Codes)
-The Algorithm is very simple .
Step 1 : Change R value with B . (Input Color (1,2,3) -> (3,2,1))
So now you have color in BGR format .
Step 2 : Convert Hex code of color to integer using Int64.Parse
Source Code in C# :
Code:
var Col = ColorPicker.Color;
var tempcol = Col;
Col.R = tempcol.B;
Col.B = tempcol.R;
var Output = Int64.Parse(Col.ToString().Replace("#", string.Empty), System.Globalization.NumberStyles.HexNumber).ToString();
Suggested Color Codes :
MahGraphic Ghost : 4290289538
Feel free to share beautiful colors here with us .
We will add your colors here .
Have Fun .
Click to expand...
Click to collapse
is it possible to make a "transparent" color so i can make my navigation bar transparent ???
thanks
Micheal
megasounds said:
is it possible to make a "transparent" color so i can make my navigation bar transparent ???
thanks
Micheal
Click to expand...
Click to collapse
Unfortunately no .
Colors format are in RGB , for a transparent color you need A property in color (Opacity) .
So in lack of A you can't make a transparent color .
Its for windows 10?
Saeem said:
Its for windows 10?
Click to expand...
Click to collapse
Windows 10 Mobile . I didn't test it yet on W10 PC . I see MS add custom Tile color to W10 pc on redstone 2 but not on mobile yet
Can you please upload some screenshots?
Saeem said:
Can you please upload some screenshots?
Click to expand...
Click to collapse
Here you are
ngame said:
Here you are
Click to expand...
Click to collapse
@ngame cani I add only one accent colour at a time or can I add special colour data as much I want??
SBL. said:
@ngame cani I add only one accent colour at a time or can I add special colour data as much I want??
Click to expand...
Click to collapse
Seems only one is possible . if we can add more colors I don't know .
Whoa,Nice ! Thanks DHT Dev.
Help me
http://www.upsieutoc.com/image/YR01sp
Aries Prine said:
Help me
http://www.upsieutoc.com/image/YR01sp
Click to expand...
Click to collapse
Sorry for late !
a new app is coming in next days that completely do the procedure automatically and It's a real replacement for Settings -> Personalization .
ngame said:
Sorry for late !
a new app is coming in next days that completely do the procedure automatically and It's a real replacement for Settings -> Personalization .
Click to expand...
Click to collapse
Our new brand application , you can find it here :
https://forum.xda-developers.com/wi...tion-dynamically-manage-t3563949/post71203232
DHTPersonalization is the replacement for the current app you see here . So better to upgrade your experience with using our new app .
Thank you

Categories

Resources