Share your set-up. It doesn't matter if your BL is locked or not. You could be using something that others may find useful like apps, widgets, wallpapers, icons, etc.
-------------------------------------------------------------
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
SYSTEM
- 4.4.2 OTA Debloated
- Stock 3.4.42 Kernel
- BL Unlocked & Rooted
- TWRP
- SuperSU
- Busybox (Latest)
MODS / APPS
- Xposed
- XGEL Settings (Donate)
- Greenify (Donate)
- Gravity Box (Donate)
- TricksterMOD Kernel Settings (Donate)
- Transition animation scale = .5x
- AppOps
- Init.d Scripts
- AOSP Camera
- Motorola Gallery
- Removed Blur Camera & AOSP Gallery
- Replaced Phone & People icons with AOSP icons
- Replaced AOSP Calculator with CM11's Calculator
- Lcd Density = 247
- Android Wear Bootanimation (No Sound)
KERNEL SETTINGS
- Cubic
- Row
- Ondemand
- RAB = 512
- CPU = 384/1512
- Multicore Power Savings = 2
- LED Control = Green charging
LAUNCHER SETTINGS
- Paranoid Android Launcher3
- 3 Screens
*1 = (Home) Desk clock / Some apps
*2 = Power Control / Moto notification light toggle / Verizon data widget
*3 = CM11 calculator widget
XGEL Settings
- Hide statusbar clock on homescreen
- Swipe down (Right) = Quick settings
- Swipe down (Left) = Notifications
- Back button sleep
- Resize all widgets
- Icon text size = 105
GREENIFY SETTINGS
- Everything. LOL!
GRAVITY BOX SETTINGS
- Lowered lockring on lockscreen
- Extra quick toggles
- Expandable volume panel
- Volume cursor control
- Ultimate Notification Control
INIT.D SCRIPTS
- Sqlite
- Sysctl
- Zipalign
Code:
#!/system/bin/sh
LOG_FILE=/data/local/zipalign.log
ZIPALIGNDB=/data/local/zipalign.db
if [ -e $LOG_FILE ]; then
rm $LOG_FILE;
fi;
if [ ! -f $ZIPALIGNDB ]; then
touch $ZIPALIGNDB;
fi;
echo "Starting FV Automatic ZipAlign $( date +"%m-%d-%Y %H:%M:%S" )" | tee -a $LOG_FILE
for DIR in /system/app /data/app ; do
cd $DIR
for APK in *.apk ; do
if [ $APK -ot $ZIPALIGNDB ] && [ $(grep "$DIR/$APK" $ZIPALIGNDB|wc -l) -gt 0 ] ; then
echo "Already checked: $DIR/$APK" | tee -a $LOG_FILE
else
zipalign -c 4 $APK
if [ $? -eq 0 ] ; then
echo "Already aligned: $DIR/$APK" | tee -a $LOG_FILE
grep "$DIR/$APK" $ZIPALIGNDB > /dev/null || echo $DIR/$APK >> $ZIPALIGNDB
else
echo "Now aligning: $DIR/$APK" | tee -a $LOG_FILE
zipalign -f 4 $APK /cache/$APK
busybox mount -o rw,remount /system
cp -f -p /cache/$APK $APK
busybox rm -f /cache/$APK
grep "$DIR/$APK" $ZIPALIGNDB > /dev/null || echo $DIR/$APK >> $ZIPALIGNDB
fi
fi
done
done
busybox mount -o ro,remount /system
touch $ZIPALIGNDB
echo "Automatic ZipAlign finished at $( date +"%m-%d-%Y %H:%M:%S" )" | tee -a $LOG_FILE
- Fstrim (Auto)
Code:
#!/system/bin/sh
#Interval between Fstrim runs, in seconds, 54000=15 hours
RUN_EVERY=54000
LOG_FILE=/data/local/FstrimAuto.txt
if [ -e $LOG_FILE ]; then
rm $LOG_FILE;
fi;
echo "Starting Automatic Fstrim $( date +"%m-%d-%Y %H:%M:%S" )" | tee -a $LOG_FILE;
fstrim -v /cache | tee -a $LOG_FILE;
fstrim -v /data | tee -a $LOG_FILE;
fstrim -v /system | tee -a $LOG_FILE;
echo "Automatic Fstrim finished at $( date +"%m-%d-%Y %H:%M:%S" )" | tee -a $LOG_FILE;
- GPU Touchrender
Code:
#!/system/bin/sh
#Force GPU for touch render
echo 7035 > /sys/class/touch/switch/set_touchscreen;
echo 8002 > /sys/class/touch/switch/set_touchscreen;
echo 11000 > /sys/class/touch/switch/set_touchscreen;
echo 13060 > /sys/class/touch/switch/set_touchscreen;
echo 14005 > /sys/class/touch/switch/set_touchscreen;
- Infinite Battery - Modified - When the phone is asleep this keeps the CPU @ 38400
Code:
#!/system/bin/sh
#Infinite Battery
SLEEP_GOVERNOR="ondemand"
SLEEP_GOVERNOR_FREQENCY_MAX="384000"
SLEEP_GOVERNOR_FREQENCY_MIN="384000"
SLEEP_GOVERNOR_FREQ_STEP="2"
SLEEP_GOVERNOR_UP_THRESHOLD="96"
SLEEP_GOVERNOR_SAMPLING_RATE="120000"
SLEEP_GOVERNOR_SAMPLING_DOWN_FACTOR="1"
echo "Setting SLEEPING Governor..."
SLEEPING=`cat /sys/power/wait_for_fb_sleep`
if [ $SLEEPING = "sleeping" ]; then
echo $SLEEP_GOVERNOR > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo $SLEEP_GOVERNOR_FREQENCY_MAX > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo $SLEEP_GOVERNOR_FREQENCY_MIN > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
echo $SLEEP_GOVERNOR_UP_THRESHOLD > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold
echo $SLEEP_GOVERNOR_FREQ_STEP > /sys/devices/system/cpu/cpufreq/ondemand/freq_step
echo $SLEEP_GOVERNOR_SAMPLING_RATE > /sys/devices/system/cpu/cpufreq/ondemand/sampling_rate
echo $SLEEP_GOVERNOR_SAMPLING_DOWN_FACTOR > /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor
SLEEPING=
fi
done &)
echo "Done!"
That sounds like an awesome setup, sir. I'm jealous.
All I have is:
SYSTEM
- 4.4.2 OTA
- BL locked, not rooted
LAUNCHER SETTINGS
- Nova Launcher (standard version)
- default icons
- Google hotword detection enabled
- 5 Screens
*1 = Google Keep / Dogecoin wallet balance
*2 = Google Calendar / Gmail / Verizon data usage / File Manager folder / Google apps folder
*3 = Google Search bar / Analog clock / Google Now cards (default screen)
*4 = SMS messaging / Hangouts / Tools folder / Games folder / Torch toggle
*5 = Google + location / Play Newstand / Play Store Sound Search widget
Keyboards
- Google Keyboard
- Hacker's Keyboard
- NextApp Keyboard (current favorite for daily usage)
Frequently-Used Apps besides the Google apps, because I basically use them all
- Battery Widget Reborn (Notification - Big White / Time When Completed / Temperature)
- Fing (network tools, usually used to quickly check another system's IP on the LAN)
- K-9 Mail (open source mail client)
- Light Flow Lite (customize notification light)
- System Panel Lite (dev: NextApp; comprehensive system and process stats)
- Total Commander (file manager with plugin support, works great)
It sits in an Otterbox case most of the time, thanks to my butterfingers.
Here is mine. Plain and simple with great battery life.
4.4.3 Carbon Nightly ROM
BL unlocked & rooted
TWRP
SuperSU
Kernel Settings
Interactive
Row
Action Launcher Pro
With only 1screen
Zooper Widget Pro
Sent from my DROID RAZR M using Tapatalk
4.4.3 Stock
Unlocked and Rooted
Stock Kernel
1 homescreen:
Click UI icons
UCCW for the clock, outer rim is battery level.
Heavily Tasker'd for location and headset/Pebble connections.
Small White icons for some tasker tasks (like enabling data+wifi hotspot and swiping to disable it)
I mainly use mine to check forums, email, and navigate using Google Maps. I even have the Moto car dock wired into my car with a hidden cable so it's very clean
ATTACK said:
KERNEL SETTINGS
- Cubic
- Cfq
- Ondemand
- RAB = 512
- CPU = 384/1512
- Multicore Power Savings = 2
- LED Control = Green charging
Click to expand...
Click to collapse
Which of your apps are allowing these changes?
Coronado is dead said:
Which of your apps are allowing these changes?
Click to expand...
Click to collapse
TricksterMOD (Donate)
ATTACK said:
TricksterMOD (Donate)
Click to expand...
Click to collapse
Excelent, thank you.
Do you find it helps to make it snappier? I have been using SetCPU to bump the min. speed on the device to 594 and it has helped, but I want to do anything I can to keep it smooth.
Coronado is dead said:
Excelent, thank you.
Do you find it helps to make it snappier? I have been using SetCPU to bump the min. speed on the device to 594 and it has helped, but I want to do anything I can to keep it smooth.
Click to expand...
Click to collapse
I really cant say, because I never ran a stock system so I cant compare the two. With TrickerMOD, Init.d scripts and Transition animation scale set to .5x it feels very fast.
BUMP
Now that more devices are unlocked, I'm hoping to read about more device set-ups.
So what your set-up?
ATTACK said:
BUMP
Now that more devices are unlocked, I'm hoping to read about more device set-ups.
So what your set-up?
Click to expand...
Click to collapse
I'll try to roll the ball a little.
Setup is mostly the same as my last post. Of course, thanks to towelroot, I've made a few changes ...
SYSTEM
- 4.4.2 OTA (183.46.10.XT907)
- Stock 3.4.42 Kernel
- Rooted, BL Unlocked
- TWRP v2.7.0
- SuperSU v1.99r4
Software
- Greenify in root mode (just a handful of apps for now)
Modifications
- "Replacement" VzwEntitlementService.apk (no-fee native tethering)
I did try out one of dhacker29's CM11 test builds, but I rely somewhat on my phone for navigation, and GPS didn't work for me. So I'm waiting it out, for now.
Wife won't let me tinker with it like I used to so just simple for now
- Stock 4.4.2 (182.46.10) debloated
- Rooted unlocked
- TWRP
- Xposed
- Gravity box (navi bar at 50% green notification bar icons and always on menu)
- Greenify
- Softkeyz(for biohazard home button)
- Punisher boot logo
That's it for now I don't feel like having another phone smashed or drowned..
Sent from my XT907 using XDA Premium 4 mobile app
SYSTEM
- 4.4.2 Google Play Edition (thread)
- Stock 3.4.42 Kernel
- Bootloader Unlock
- TWRP v2.7.0
- SuperSU v1.99r4 ZIP flashed
Software
- System Tuner App-Manager
- Google Now launcher
Modifications
- Partition Trimming on Launch
- Hosts files patched for ad blocking
Here's mine..Haven't had to much time to mod...but aahhhhh the freedom!!!
System
- Stock 4.4.2
- GSM unlocked with radiocomm
- Rooted
- Bootloader unlocked
- Debloated
- TWRP v2.7.1.0
- SuperSU v1.99r4
- Xposed
- Gravity box
- Busybox
- Softkeyz
- App Settings
- Xblast
- RAM Booster
Software
- Nova launcher (prime)
- Dashclock widget
- Stark icons
- Holo icons
xKroniK13x said:
SYSTEM
- 4.4.2 Google Play Edition (thread)
- Stock 3.4.42 Kernel
- Bootloader Unlock
- TWRP v2.7.0
- SuperSU v1.99r4 ZIP flashed
Software
- System Tuner App-Manager
- Google Now launcher
Modifications
- Partition Trimming on Launch
- Hosts files patched for ad blocking
Click to expand...
Click to collapse
Added Xposed and changed some settings. Changed to CM battery meter in status bar and also red soft keys. Also have advanced reboot menu for booting straight to recovery or boot loader. Updated SuperSU and binaries to 2.0.
Sent from my XT907 using Tapatalk
@ATTACK : I'm curious about that boot animation you're using. Could you link me to a place to get it?
Strife89 said:
@ATTACK : I'm curious about that boot animation you're using. Could you link me to a place to get it?
Click to expand...
Click to collapse
Android Wear boot animation - pulled from the LG G Watch system dump.
Flash through recovery.
Google Play Ed.
xKroniK13x said:
SYSTEM
- 4.4.2 Google Play Edition (thread)
- Stock 3.4.42 Kernel
- Bootloader Unlock
- TWRP v2.7.0
- SuperSU v1.99r4 ZIP flashed
Click to expand...
Click to collapse
Thanks for sharing!
How are you liking the GPE ROM?
I saw that thread and thought it sounded awesome.
Specter597 said:
Thanks for sharing!
How are you liking the GPE ROM?
I saw that thread and thought it sounded awesome.
Click to expand...
Click to collapse
I'm loving it. I have the xposed framework on it now, and this thing flies. Not the best battery life but better than stock. And much, much faster than stock. Ive tried all the new roms that work with the new boot loader but keep coming back to GPE.
Sent from my XT907 using Tapatalk
GSM you say?
crazy4android said:
Here's mine..Haven't had to much time to mod...but aahhhhh the freedom!!!
- GSM unlocked with radiocomm
Click to expand...
Click to collapse
How hard is the GSM unlock? Do you have a link to a thread that talks through the KitKat method?
Toying with the idea of moving to T-Mobile when my Big Red Shackles expire.
What service provider are you using for GSM service?
Specter597 said:
How hard is the GSM unlock? Do you have a link to a thread that talks through the KitKat method?
Toying with the idea of moving to T-Mobile when my Big Red Shackles expire.
What service provider are you using for GSM service?
Click to expand...
Click to collapse
I'm using at&t...its very easy...here's the thread...just follow @cellzealot directions... i just finshed doing mine again..works flawless http://forum.xda-developers.com/showthread.php?t=2166542
SYSTEM
Q9Nap's Google Play build
- A little more debloating done
BL Unlocked
TWRP 2.7.1.0
MODS
Xposed
- Android L Navigation Bar
- AppOps
- GravityBox
- Greenify
- KitKat SD Card Full Access
- StatusbarVolume
Transition animation scale = .25x
MoaAB host blocking
Helvetica font
APPS
Apex Launcher
-swipe up for apps
-swipe down for notifications
-5x5 layout
-miui icons
-no dock
BetterDashClock
-no clock
-better weather extension
-hangouts extension
-gmail
Related
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Hello guys,
i have ported this rom: http://forum.xda-developers.com/showthread.php?t=1712654 to gio
DEMOCRACY?
I don't know to tell. It's just a name...
Screenshots are shown with my favorites wallpapers, favorites apps, fonts and personal preferences.
Wallpapers, fonts and favorites apps (paid apps) not includes in this ROM.
CREDITS & THANKS TO:
# XDA - for this place, tutorial, reference etc
# Android - for OS platform
# Samsung - for firmware & platform
# Google - for references, resources etc.
# CyanogenMod - for ROM/sources
# vo-1 - for ROM
# lovetz - bring infomation ROM to XDA
# ketut.kumajaya - for Blackhawk Kernel
# dragonn - for Firekernel version
# Achep - for ICS Theme & Layouts
# balamu96m - CM9 Style Settings tutorial
# lagloose - GPS and Sensors patch
# itasoulas - hw Library GPS & Sensors patch
# happily1986 - Solutions for faster GPS locks
# imbawind - for Adrenaline™ Engine
# slaid480 - build.prop tweaks tutorial
# knzo - build.prop tutorial
# hubix - tutorial easy flash recovery
# pyronia - for easy guideline script making
# yagya - for PDroid Patch tutorial
# Team Carbon - blue torch icon
# Mobint - for Holo Launcher
# tj_droid - for tutorial decompile/compile using APKManager
# P4qui7o - for tutorial manually deodex
# skynet28 - Tools for Disable and enable journaling in internal ext4 Partitions
# aaiko - idea for QuickPic replacement for Gallery3D
# Ace King 34 - point me for fix bootloop - Launcher failure
# All friends here - for supports & reading my topic
# Antonio8297 - for port to Gio
# tamingsari2k - for ace base
# alkspo - for port v3.1
# Your name here - PM me if you think, you should be here (may be I'm forgot)
FEATURES & INFO
- phiexz kernel(6/6/2012)
- Based on CM7.2.0 squadzone
- Preinstalled PDroid & Patchers
- Preinstalled Holo Launcher
- Preinstalled Link2sd
- Preinstalled Ice Cream Sandwich theme (always blue signal)
- Preinstalled Adrenaline™ Engine
- Fully Integrated ICS Layout - no need reboot - patch - reboot - undo - reboot - patch - reboot
- Integrated Slim Lock Patterns & semi transparent circle
- Integrated Slim SIM PIN Code Entry
- Integrated text correction for USB Mass Storage description
- Ads blocked by host file.
- No fancy bootanimation. Reduce boot time with very lite bootanimation (only 71kb in size)
- Black theme for FM Radio
- Fix spinner overlaping text for USB mass storage
- Apps tested & work fine; Link2SD, Font Changer, Viber, Foursquare, BLN Pro, PDroid
- QuickPic - replacement for Gallery3D
- Not recommeded restoring apps via Titanium Backup, install apps normally.
=================DOWNLOAD LINKS ON 3rd POST=================
IMPORTANT GUIDE FOR CONFIGURATIONS - MY SETTINGS
1. Launcher
- Menu - Launcher settings - General Settings - Unticks all
- Menu - Launcher settings - Desktop Settings - Layout Settings - 5 X 5
- Menu - Launcher settings - Desktop Settings - Scrolling Settings, Other Settings - Unticks all
- Menu - Launcher settings - Drawer Settings - Layout Settings - Potrait grid 4 X 5
- Menu - Launcher settings - Drawer Settings - Layout Settings - landscape grid 4 X 5
- Menu - Launcher settings - Drawer Settings - Scrolling Settings - Transition effect - None
- Menu - Launcher settings - Drawer Settings - Scrolling Settings - Infinite scrolling - Untick
- Menu - Launcher settings - Drawer Settings - Scrolling Settings - Scrolling speed - 100
- Menu - Launcher settings - Drawer Settings - Scrolling Settings - Scrolling cache - None
- Menu - Launcher settings - Drawer Settings - Other Settings - Tick Disable open/close animation
- Menu - Launcher settings - Drawer Settings - Other Settings - Background transparency - 24
- Menu - Launcher settings - Dock Settings - Tick Enable dock, Dock pages = 1, Dock icons = 5
- Menu - Launcher settings - Dock Settings - Scrolling Settings - Infinite scrolling - Untick
- Menu - Launcher settings - Dock Settings - Scrolling Settings - Scrolling speed - 100
- Menu - Launcher settings - Dock Settings - Other Settings - Untick Hide dock divider
CLICK Show Content for MORE...
2. CyanogenMod settings - Interface - Notification power widget
- Interface - Notification power widget - General - Tick Hide indicator (for hide green indicator below toggle power widget)
- Interface - Status bar tweaks - AM/PM style - Tick small
- Interface - Status bar tweaks - Battery status style - Tick Percentage
3. Performance settings
- CPU settings - Available governors - Tick smartassV2
- Min CPU frequency = 245MHz
- Max CPU frequency = 806Mhz
- Tick Set on boot
- Unticks for Use JIT, Enable surface dithering but Tick for Use 16bit transparency.
- Tick for Use JIT if you use S2E (simple2ext)
- Scrolling cache - Choose for Force disable (it will help you prevent the background becomes white when scroll through messages)
4. GPS Settings
- Location & security - GPS Source - Tick for Use Internal GPS
- Configure GPS by your country (except Malaysia - already figured for Malaysia)
5. Customize fonts
- Download & install Font Changer from Google play.
- Download more fonts here: www.dafont.com
- App drawer - Font Changer - Menu - Settings - Fonts Location - /sdcard/fontchanger/ - press OK
- Put your download fonts to /sdcard/fontchanger
- App drawer - Font Changer - choose your desire font - reboot
- Done.
6. Tips for battery life
- Save battery life here
- Other tip Precise Volume Control, Smooth Scrolling and Battery Drain Fix . (Democracy's ROM already have this fix)
- After reboot - go to Menu - Manage apps - Running tab - Kill process for Google playstore
- App drawer - Settings - Accounts & sync - Untick Background data
- Turn it on Background data & Google playstore if you want download from Google playstore.
DEMOCRACY V2 screen shots
APKS REMOVED
- ADWLauncher, Androidian, CMUpdateNotify, CMWallpapers, Cyanbread, Development, DSPManager,
Email, Gallery3D, HTMLViewer, PicoTts, Protips, Provision, QuickSearchBox, RomManager, SamsungServiceMode,
Stk, TtsService, VoiceDialer & VpnServices.
CHANGELOG V2
- Firekernel updated to 22.07.12
- Fixed bootloop when switch to Centered under Widget layout
- Rearrangement menu, layout, row colums etc (more viewable screen, no need change LCD Density)
- Merged theme into system (no 3rd party theme need)
- Semi transparent statusbar
- Semi transparent Launcher menu
- Semi transparent popup menu
- Semi transparent SIM PIN code entry
- BLN support
- Add 30 volumes steps
- Check box alarm clock (ICS9 Style)
- Removed PDroid & Patchers (complicated with 30 volumes steps)
- Removed Link2sd
- Removed ICS Theme
- Rearrangement ICS CM9 style settings
- Busybox updated to v1.20.1
- Hololauncher updated to v1.1.2 (free version)
- Superuser updated to v3.1.3
- Google Play Store updated to v3.7.13
CHANGELOG V2.1
- Add QuickSearchBox.apk, Stk.apk, Talkback.apk, TtsService.apk, Gmail.apk & VoiceSearch.apk
- Standard Clock - on the right side (prevent overlapping notification icon)
=====V3.1=====
- same base with v2.1
- added Audio Manager (free version)
- added Color Note
- Mod transparent calendar by me
- Mod transparent superuser by me.
- fixed gray text & text margin
- fixed superuser & transparent
- fixed calendar & transparent
- fixed keyboard (LatinIME) not showing icon under "manage applications"
- Holo Launcher v1.2.3*
- Mod framework-res & some others apks.
- Enabled Mms enter key
=====V3.2=====
- removed Audio Manager
- added Beats audio engine + Alsa + AudioFXwidget (thanks to Lovetz)
- added stock Task Manager (thanks to Cryss)
- added Browser apk
- Task Manager mod by me (ICS Theme)
- fixed superuser
=====V3.3=====
- Added Adrenaline™ Engine 4.3
- Replaced browser.apk with DolphinBrowser
- Fix superuser
- Fix Accessibility settings for "Power button ends call"
- Fix titlebar text to close.
- Beats audio engine + Alsa + AudioFXwidget (still here)
- Task Manager (still here)
=====FINAL EDITION=====
- Intergrated Adrenaline™ Engine 4.3
- Replaced browser.apk with DolphinBrowser (updated to v9.0)
- Google Play updated to v3.9.1.6
- Beats audio engine + Alsa + AudioFXwidget (still here)
- Colored icons ICS settings styles
- Colored icons Phone Options*
- Added some menu for ICS settings styles (Mobile Network, Task Manager & Wallpapers)
- Added ICS Theme mod (non transparent for popup dialog, background for some apps)
DOWNLOADS
v2: http://www.mediafire.com/download.php?ymgj73724fj297a outdated
v2.1: http://www.mediafire.com/download.php?zjxc5zsqf3u2mw9 outdated
v3.1: Democracy_v3.1 (mirror,use mirror only if first link not work)
FINAL:DCMR-GIO-FINAL
=======BEGIN INSTALLATION FOR V3.1=======
1. Flash DCMR-FINAL-GIO (Installation steps is same as previous rom)
OPTION
Holo Launcher mod for transparent menu, resize font, row, icons etc.
- Put in HoloLauncher-update.zip on your SD Card
- Boot into CWM5 Recovery - mount system
- Instal zip from sdcard - choose zip from SD Card - flash HoloLauncher-update.zip
- Reboot
PATCHERS 1
Enabled enter key create new line for Mms apk
(Integrated with V3.1)
- App drawer - Messaging - Menu - Settings - EXTRA SETTINGS
i- UNTICK Send on Enter will create new line
ii-TICK Send on Enter msg will be send when enter key pressed
Hey thanks for that beautiful rom ! Gonna test it .. and can i maybe get the wallaper with the bleu tree on the 1 screenie set ? ,
Sent from my HTC Hero using xda app-developers app
android lover <3 said:
Hey thanks for that beautiful rom ! Gonna test it .. and can i maybe get the wallaper with the bleu tree on the 1 screenie set ? ,
Sent from my HTC Hero using xda app-developers app
Click to expand...
Click to collapse
stay testing,and tomorrow upload.
Waiting link. I think like this rom. How is the Battery performans?
GT-S5660 Tapatalk 2 kullanılarak gönderildi
seralp said:
Waiting link. I think like this rom.
GT-S5660 Tapatalk 2 kullanılarak gönderildi
Click to expand...
Click to collapse
tomorrow or this night
I love cm7 but battery performans not perfect. Is this good?
GT-S5660 Tapatalk 2 kullanılarak gönderildi
seralp said:
I love cm7 but battery performans not perfect. Is this good?
GT-S5660 Tapatalk 2 kullanılarak gönderildi
Click to expand...
Click to collapse
I am always active with 2g and 8 o'clock this morning and are now at 89%. for me the battery is good.
You know it's against rules making thread without giving download link? Now it's just spam, not new rom thread...
wojtek267 said:
You know it's against rules making thread without giving download link? Now it's just spam, not new rom thread...
Click to expand...
Click to collapse
i will only test,tomorrow give link,but if it should be closed, close it.
great share!Thanks for your contribution .
DOWNLOAD LINK added
Ok. I download it. I testing.
GT-S5660 Tapatalk 2 kullanılarak gönderildi
no credit? no permission?
I like the rom but there is 1 big thing I didn't like: the transparant pop-up and transparent launcher screen. You see the text of the previous screen between the text of the new screen and that's not good to read. With apocalypse rom it was the same so I revert back to cm7.2 by phiexz. Can you undo the transparant thing for me (with patch or full rom)? Or can you tell me how I can do it myself? It's a great rom and I really want it! Great job btw!!
Sorry for bad english.
Sent from my GT-S5660 using xda premium
Why you dont make one .zip with everythink incl. there ... like GPS na other settings...?
When i`m on way and i want to flash with your rom i cant? i must do milion thinks,settings to work normal?
This rom is so sick o: ! Gonna use it for a long time !
Sent from my GT-S5660 using xda app-developers app
vangerken said:
I like the rom but there is 1 big thing I didn't like: the transparant pop-up and transparent launcher screen. You see the text of the previous screen between the text of the new screen and that's not good to read. With apocalypse rom it was the same so I revert back to cm7.2 by phiexz. Can you undo the transparant thing for me (with patch or full rom)? Or can you tell me how I can do it myself? It's a great rom and I really want it! Great job btw!!
Sorry for bad english.
Sent from my GT-S5660 using xda premium
Click to expand...
Click to collapse
re download holo launcher.
Japany said:
Why you dont make one .zip with everythink incl. there ... like GPS na other settings...?
When i`m on way and i want to flash with your rom i cant? i must do milion thinks,settings to work normal?
Click to expand...
Click to collapse
this is a feature of rom.
Thx
Sent from my GT-S5660 using xda premium
B]About[/B]
Welcome to Team Kernalizers's SPRINT Thread. This thread will attempt to teach you and show you how to maximize the performance and battery life of your GS3 running the KT747 kernel by Ktoonsez.
In this thread, you will learn everything you need to know about Governors, I/O Schedulers, Underclocking (UC), Overclocking (OC), Undervolting (UV) and the KTweaker application. We will also provide you with pre-configured tweaks to use.
This is a friendly support community. You can post your benchmarks, battery stats, feedback and settings. We will also help troubleshoot any problems that you may encounter while using this kernel and our tweak packages.
RulesPlease consider these rules before using this thread:
1. Follow XDA Forum rules (http://forum.xda-developers.com/announcement.php?f=1712)
2. There will be NO FLAMING, NO SPAMMING, NO HARRASMENT of any kind. These will not be tolerated. You have been warned!
3. Search the thread first before asking questions. Most likely, your question may have been answered already.
4. If you are stuck and need help, DO NOT post comments like "this is not working". It will be ignored. You must provide necessary information like ROM Type (AOSP/TW), Kernel Version, OC, UV ...etc. You get the picture. The more you provide the better we can help
5. Please allow time for the team to find an answer if we can’t figure it out we know enough people to help us out finding a answer thank you
6. Be Patient We have our own personal lives outside of here. Allow the team some time to find answers. We will do our best to help.
7. If you post screenshots, you are allowed a maximum of 3 screenshots.
8. Keep posts/threads on-topic
By post in this thread, you are agreeing to the above rules.
Members
Galaxys3Man30
mw86
GTOJIM
Ramondal
clothednblack1
RErick
chinkybean
daniel4653
steelers_exe
crazymook
castle_bravo
luis86dr
MorphiousGX
TexasEpic4G for awesome banners he makes for us!!!!!
Supported DevicesAT&T Samsung Galaxy SIII : http://forum.xda-developers.com/showthread.php?t=2144004
Sprint Samsung Galaxy SIII: http://forum.xda-developers.com/showthread.php?t=2032956
T-Mobile Samsung Galaxy SIII: http://forum.xda-developers.com/showthread.php?t=2207286
Verizon Samsung Galaxy SIII: http://forum.xda-developers.com/showthread.php?t=2201555
Thanks
ktoonsez - For giving us this amazing kernel and the plethora of options available with it. His thread his here Make sure to thank him!
AT&T: http://forum.xda-developers.com/showthread.php?t=1756776
Sprint: http://forum.xda-developers.com/showthread.php?t=1800576
T-Mobile: http://forum.xda-developers.com/showthread.php?t=1871946
Verizon: http://forum.xda-developers.com/showthread.php?t=1853816
All of the Team Kernelizers members for their tweaks and dedication and help
All of the testers, and followers
All of the ROM developers out there for making our phones fun to use
And of course our Friendly Forum Moderator:
kennyglass123
DisclaimerTeam Kernalizers members, Ktoonsez, and ROM developers are not responsible for bricked devices or any other device issues you experience as a result of using information in this thread.
Every phone is different, especially since it was found that we have slow, nominal, and fast variations.
Tweaks provided are extremely experimental and should be avoided by beginners and people who have important responsibilities tied to the usage of their phone.
You Have Been Warned: Use of any information, tweaks and applications in this thread at your own risk. You assume full responsibility for your own actions.
Downloads
Team Kernelizers TweaksAll of our TK bin files will be available here:
From Phone: https://m.box.com/s/5hazifi3odci94uyykws/1/698338185
From PC: https://www.box.com/shared/5hazifi3odci94uyykws
Reporting ToolsHuge thanks to MorphiousGX for our live report form. Please report battery usages at these links.
We will use this information to help make better adjustments to our tweaks. It will collect the necessary information to make sure people compare apples to apples*
You can also view results after you submit, and filter on any of the questions asked (i.e. Tweaker's name, governor, release date..etc).
The form can be found here*https://docs.google.com/forms/d/1-uz...3jPpg/viewform
The results can be viewed here*https://docs.google.com/spreadsheet/...Xc&usp=sharing
If you have any feedback (good or bad) please feel free to let MorphiousGX know he maintains it and you all should thank him.
Team Kernelizers Proudly PresentsTK Mod 2.4
Download www.androidfilehost.com/?fid=23060877489998093
Features
Bin File Rename
Individual renaming of the following bin Files for battery savings:
gsiff_daemon
mpdecision
qosmgr
smd
smdexe
Renames bin files with .bak
Bin File Restore
Individual restoring of the following bin files:
gsiff_daemon
mpdecision
qosmgr
smd
smdexe
Restores bin files to their original state.
Mods
KT747 Bootanimation Fix:
Use only if bootanimation is broken. Usually occurs on TW Roms.
Team Kernelizers TouchWiz Build Prop Tweaks
Team Kernelizers AOSP Build Prop Tweaks
Restore of Original TouchWiz Build Prop
Restore of Original AOSP Build Prop
ChangelogLocated in TKMod zip
Contest Splash Screens
You now have access to all Team Kernelizers Contest Splash Screens in one zip!
1st Place Splash Screen:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
2nd Place Splash Screen:
3rd Place Splash Screen:
4th Place Splash Screen:
5th Place Splash Screen:
6th Place Splash Screen:
7th Place Splash Screen:
8th Place Splash Screen:
9th Place Splash Screen:
10th Place Splash Screen:
11th Place Splash Screen:
Stock Splash Screen: Reverts to Original Splash Screen.
Thanks from luis86dr
Edgehood for answering all my questions about Aroma! Thanks buddy!
steelers_exe for his awesome splash screen for Aroma Installer.
RErick for his build prop updater script & for providing Splash Screen zips.
mw86 for his build prop tweaks.
GMan for testing and helping me. Also for providing mirrors!
decimalman for making the build prop script work!
Ktoonsez for such a awesome Kernel and inspiring us to do what we do.
Everyone who helped with testing!
Team Kernelizers for being so damn awesome!
Known BugsSplash Screens will only work on TouchWiz
Working on finding out the cause of these issues. Please report bugs in either of the Team Kernelizers threads.
This is still in Beta, more is yet to come!!!!!!
Kernel InformationGeneral Installation Instructions (for both TW and AOSP):1. Download correct version of kernel for your device and rom. This is important as you may brick your phone is you use the wrong version.
2. Flash kernel using your preferred recovery
3. Do the following AFTER installing the kernel and BEFORE you reboot your phone:
a. Clear cache
b. Clear dalvik
c. Fix Permissions
4. Reboot your device.
TW Specific Kernel Instructions:
(can be used with AOSP too)There are some files on your TouchWiz phone that need to be renamed in order to maximize the battery life of your phone. There has been some debate on whether or not this is necessary, but for now we would recommend renaming these files to ensure that there is no chance of excessive battery drain.
Part 1:
These steps are only necessary on TouchWiz ROMs, however you can also do this on AOSP as well:
1. You must have ROOT. You will need to have a root enabled file explorer on your phone (ES File Explorer works very well and you can get it from the play store (https://play.google.com/store/apps/details?id=com.estrongs.android.pop&hl=en). When you get it, open it up and go the the settings and scroll all the way down until you see the Root Settings. Go in there and enable ALL of the root settings.
2. After that is done, navigate to your root folders using the Folder Up icon at the top. Once you are in your root folders, navigate to /system/bin and locate the following files. You will need to rename them with a ".bak" at the end of the filename
gsiff_daemon --> gsiff_daemon.bak
mpdecision --> mpdecison.bak
qosmgr --> qosmgr.bak
smd --> smd.bak
smdexe --> smdexe.bak
Renaming these files will not harm your phone. Many users rename these files every time they flash a rom, and no damge is done.
Also, some ROMs come with these files renamed or deleted entirely, so if you don’t find a file, don’t be alarmed.
You have to do this every time you flash the ROM and/or Kernel.
If you feel uncomfortable doing this yourself, you can use the TK-MOD (see Downloads section) and it will handle this for you.
Part 2:
Stopping mpdecision from being called:
1. Open terminal emulator and type the following code:
su
2. When terminal emulator asks for root permission hit 'Grant' or 'Allow'.
3. At the # prompt type:
stop mpdecision
Using Rom Toolbox (https://play.google.com/store/apps/details?id=com.jrummy.liberty.toolbox) we will make a script that will stop mpdecision from being called at each boot so you don't need to use terminal emulator each time
1. Open Rom Toolbox and scroll down to the Scripter option
2. In the scripter, click the “+” button in the top right corner, then select 'Create'
3. Type a name for our new script, lets call it “stop mpdecision”
4. In the commands enter the following text:
#!/system/bin/sh
stop mpdecision
5. Hit the disk icon to save it
6. Select the script that you just created and a dialog box should pop up, select set at boot
Were done here
AOSP Specific Kernel Instructions:When coming from a 3.0 Kernel to a 3.4 Kernel there is a new method with kernel updates. Skipping these steps will cause phone instability, due to some bad data left behind. This is a flaw in the Android OS, not the application. You must follow the instructions below (Thanks ktoonzs for the new method of the ktweaker app)
1. Go to Settings on the phone
2. Go to app manager then all apps
3. Scroll down to ktweaker app n open it
4. Once open hit FORCE STOP and then hit CLEAR DATA
5. Reboot and flash your new update of ktoonzs kernel
6. Repeat steps 1-4 in the above “General Installation” section
You should be good to go after that
Resources & Useful Links
[*]Rescan Media Root (click link on phone and be sure to select launch link with play store)
https://play.google.com/store/apps/d...diascannerroot
[*]Kill Media Server (thanks for the link Jcdominguez)
http://www17.zippyshare.com/v/77111471/file.html
[*]Lux Auto Brightness (set brightness lower than stock minimum brightness on any rom)
https://play.google.com/store/apps/d...d=com.vito.lux
[*]Rom Toolbox Lite by Jrummy
https://play.google.com/store/apps/details?id=com.jrummy.liberty.toolbox
[*]Build Prop Editor free by Rom Toolbox maker Jrummy
https://play.google.com/store/apps/d...ld.prop.editor
[*]Swipe Pad (thanks Naddict) make a easy to launch multitask launcher from anywhere a shortcut to Developer Options (great for aosp Hwoverlay)
https://play.google.com/store/apps/d...ipepad.android
[*]Known Wakelocks thread (Thanks T. J. Bender)
http://forum.xda-developers.com/show...php?p=31974989
[*]DS Battery Saver Pro (manage radios like juice defender with less overhead) (thanks for the link AdamDelozier)
http://forum.xda-developers.com/show...php?p=35046431
[*]Battery Review Thread including extended batteries (Thanks Rlatjs17)
http://forum.xda-developers.com/show...php?p=30478980
[*]Fast Reboot (closes/restarts apps and services similar to rebooting without a reboot)
https://play.google.com/store/apps/d...streboot&hl=en
[*]Better Batter Stats (track all forms of wake locks) (Thanks Sven Knispel)
https://play.google.com/store/apps/d...erbatterystats
[*]Carat (track and discover battery drain prone apps)
https://play.google.com/store/apps/d....carat.android
[*]Seeder 2.0.0b1 (Thanks Lambgx02)
http://forum.xda-developers.com/showthread.php?p=592
[*]Cpu Spy (check used mhz and deep sleep usage) (Thanks Brandon Valosek)
https://play.google.com/store/apps/d...valosek.cpuspy
[*]Universal Initd Support APK (Thanks RyuInferno) (enable check for initd support)
http://forum.xda-developers.com/show....php?t=1933849
[*]Lag Fix(fs-trim) (use trim to trim blocks labeled deleted from storage where blocks are still full) (thanks AuxLV)
http://forum.xda-developers.com/show...&postcount=122
[*]CrossBreeder Combo MOD (combines three discussed entropy lag/lockup tweaks)
http://forum.xda-developers.com/show...php?p=37062006
[*]Flashable Recoveries (please thank Naddict for this amazing resource)
http://forum.xda-developers.com/show...php?p=35741601
[*]If you flashed the KT747 kernel separate from your ROMs installer, you can enable the boot animations by following the directions in this thread:
http://forum.xda-developers.com/show...22&postcount=4
[*]This is a link to the Better Battery Stats thread. This app is only free to XDA members, but I strongly encourage you to donate. And please hit the thanks button while you are there.
http://forum.xda-developers.com/show....php?t=1179809
[*]Schedulers and Governors explained:
http://forum.xda-developers.com/show...php?p=19846276
http://forum.xda-developers.com/show...php?p=26884853
President of {Team Kernelizers}
Im Gman and I approve this message
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
*Users with Ktweaker settings reseting: Freezing system tuner and or rom toolbox is a possible fix for either min/max mhz, scheduler or governor resetting in Ktweaker. Another way could be making a backup of your settings, clear data on ktweaker, reboot and restore settings twice as not all apply right first time and reboot again with restore settings immediately at boot.
*Ktweaker Issues if on Kt747 Kernel: could have issues on roms like Freegs3 and it is noted that if you prefer to use Ktweaker to set your settings vs script than make sure no conflicting script is running for example check /system/etc/initd/ for 70tweaks and remove or place somewhere for safe keeping to prevent conflicts with Ktweaker for example min max changing or voltage tables, governor or scheduler. This script in the example is Freezas script to set phone based on screen on and off and current battery level for example of some of its functions, there is nothing wrong with using scripts nor is there a problem with this script in particular. Just be aware there will be conflicts if used in conjunction with Ktweaker and or setcpu and the like.
Ktoonservative governor presets from our thread
BALANCED PERFORMANCE BATTERY LIFE (no order)
Ktoonservative 50 30 67 68 Freecharlesmanson tunables
Ktoonservative 50 30 85 80 docnas tunables
Ktoonservative 33 11 99 35
Ktoonservative 42 11 99 99
Ktoonservative 75 11 95 75 tunables
HIGH BATTERY SAVINGS (no order)
-#*note#* (you can get away with one of these high threshold tunings and not feel laggy by using touch booster set to 384mhz on booster one and for touch two 486mhz which should help response time on any interactive action where in you touch the screen and immediately resume the normal minimum mhz as during touch boost the cpu still ramps based on load over the touch boost values if and as needed. It provides less frequency steps to target frequency during interactive use)*! 384/486 being conservative and 702mhz touch boost 1 756mhz touch boost 2 for more response and still will not be over target frequency during interactive use.
Ktoonservative 75 90 95 99 single core
Ktoonservative 85 94 95 99 single core 12 31 2012
Ktoonservative 60 35 97 75 Castle Bravo
Ktoonservative 60 35 90 70 Daniel4653
Ktoonservative 65 45 99 99 tunables
Ktoonservative 65 55 99 99 tunables old revision
Ktoonservative 65 45 97 95 Castle Bravo
SCHEDULERS
Jcdominguez chart
[Light usage] SIO> ZEN> NOOP> Deadline > BFQ > CFQ [medium/heavy usage]
************
Battery Saving:
-Noop: best battery savings for all mobile but not the best data rates. Considered a simple i/o
-SIO: similar to noop but uses a little more battery with benefit of some deadlines.
-Zen: Combo of noop, sio and deadline.
Balanced:
-BFQ: a good balance of battery and performance.
*tuning for solid state storage
# Freecharlesmanson tunables original
# MW86 tunables (use if above tuning resets ever time)
Performance with battery secondary:
-Row: fastest latencies on reads over all governors but may have the highest battery drain. Read Over Write.
#performance tuning Castle Bravo
-Schedulers/Governors Explained (thanks droidphile) (thanks for link Clothednblack)
http://forum.xda-developers.com/showthread.php?p=19846276
(thanks Grift) (thanks for link Clothednblack)
http://forum.xda-developers.com/showthread.php?p=26884853
Extra low Voltage Table:
! #@$ do not try this table if you have not tried the one in post one above. This is much lower and likely not okay for every phone but has been a non issue on mine and for a few others.
2106mhz: 1290 mV
1998mhz: 1260 mV
1890mhz: 1225 mV
1809mhz: 1200 mV
1728mhz: 1175 mV
1674mhz: 1160 mV
1512mhz: 1150 mV
1458mhz: 1145 mV
1404mhz: 1140 mV
1350mhz: 1135 mV
1296mhz: 1125 mV
1242mhz: 1110 mV
1188mhz: 1100 mV
1134mhz: 1085 mV
1080mhz: 1075 mV
1026mhz: 1035 mV
972mhz: 1025 mV
918mhz: 1010 mV
864mhz: 1000 mV
810mhz: 985 mV
756mhz: 975 mV
702mhz: 935 mV
648mhz: 925 mV
594mhz: 910 mV
540mhz: 900 mV
486mhz: 885 mV
384mhz: 880 mV
192mhz: 875 mV
144mhz: 870 mV
96mhz: 865 mV
Low Rider Volt Table
-note may not be stable using the same volts but a higher maximum mhz
-if the above table or the one in post one are not stable do not attempt to load these
-Thanks goes to Clothednblack1
1242 MHz - 995mV
1188 MHz - 975mV
1134 MHz - 950mV
1080 MHz - 945mV
1026 MHz - 930mV
972 MHz - 915mV
918 MHz - 910mV
864 MHz - 855mV
810 MHz - 850mV
756 MHz - 835mV
702 MHz - 820mV
648 MHz - 805mV
594 MHz - 835mV
540 MHz - 825mV
486 MHz - 805mV
384 MHz - 785mV
192 MHz - 775mV
144 MHz - 765mV
96 MHz - 700mV this may be too low for some
General Tips for faster UI
-enable Hwoverlay and force gpu rendering (leave out Hwoverlay on touchwiz to prevent a noted video playback issue)
-Disable animations and transitions on launcher (or set to as fast as possible)
-Use Launcher options to force launcher into memory like in Nova Launcher (Thanks Pberge)
Create localprop and force app in memory thanks nonato
- Go to terminal type su hit enter
-Type all of the following and hit enter to add an app to local.prop and force it in memory. Nova Launcher would be as follows. If local.prop doesn't exist the command will create it.
echo sys.keep_app_1=com.teslacoilsw.launcher-1 >> /data/local.prop
-(Thanks nonato for posting this trick in Seeder thread.)
Fix Gtalk fully disable if it was removed and causing a wakelock (needs credit need to find poster of this)
Cyanogenmod Based tweaks
-enable memory management options
-disable dithering (dithering on smooths color transitions off can show a banding effect) (if not on a CM based rom the use dithering 0 build prop has same effect)
-16bit transparency (close to half the bandwidth needed for 24/32bit color)
Rename these files on Touchwiz as pictured in System/Bin to prevent unnecessary battery drain (thanks for pic Jcdominguez)
Thread on Touchwiz safe to remove apps GS3 (Thanks Vegas Rooted)
http://forum.xda-developers.com/showthread.php?p=32212501
User suggestions for removable apps (Touchwiz)
Stop MPDECISION on a 4.2.1 Rom
- Navigate like in this pic to system/etc
- Open initpostboot.sh
- Go to line 223 (i use droidedit free at play store to edit the file it makes it easy to find line numbers)
- Place cursor in front of mpdecision and insert a #. Save the file and exit and reboot. Thats all thats necessary to prevent stopping mpdecision from starting or showing errors over and over in logcat on Android AOSP 4.2.1.
-*Credit goes to Decimalman thank you
Info on ROW Scheduler
http://lwn.net/Articles/509829/
-*Thanks CastleBravo
BUILD PROP
-tested on Freegs3(4.1.1), Goodness(4.1.1)rom, Paranoid Android(4.1.2), Chemistry(4.1.1), Unofficial AOKP(4.2.1), PACman(4.1.2), Cm10.1 nightly(4.2.1), Kiljoy(4.1.1)
- Build prop i use and has been tested on 4.1.1/4.1.2/4.2.1
- Gtojim and I are running these without issues. Tested on freegs3, cm10.1, Paranoid android and PAKman (#*has not been tested with Morphology need feedback*#)
-credit for the build props goes to Rom Toolbox and an XDA member Custodian. Thank you Custodian.
http://db.tt/q7S1s8yp
- Directions same as other build props we have listed. Until we have an easy install script this is for advanced users only who already have experience editing build.prop. I will always suggest using rom toolbox to do so vs manually editing your build prop file. Do not add all of them in without checking if the value exists already. You don't want double lines that one says the line and true and the other false, its hard to say but one may override the other. THIS IS NOT A BUILD PROP IT IS A SIMPLE TEXT FILE WITH ALL THE ONES I USE. THE BUILD PROP ENTRY IS TO THE LEFT OF THE EQUAL SIGN AND THE VALUE USED IS TO THE RIGHT OF THE EQUAL SIGN. YOU MUST SEARCH AND REPLACE OR ADD THEM MANUALLY.
-whats included in the build prop list:
debug.composition.type=gpu
debug.egl.hw=1
debug.mdpcomp.maxlayer=2
debug.sf.hw=1
debug.performance.tuning=1
debug.sf.nobootanimation=1 (set to 0 to reenambe Bootanimation or do not use this build prop)
debug.qctwa.preservebuf=1
debug.qctwa.statusbar=1
debug.qc.hardware=true
ro.HOME_APP_ADJ=1
video.accelerate.hw=1
windowsmgr.max_events_per_sec=256
media.stagefright.enable-player=true
media.stagefright.enable-http=true
media.stagefright.enable-fma2dp=false
media.stagefright.enable-aac=true
media.stagefright.enable-qcp=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-rtsp=true
media.stagefright.enable-record=false
mot.proximity.delay=20
movfilter=40
move_hyst=0
lpa.decode=false
lpa.use-stagefright=false
ro.media.enc.jpeg.quality=100
ro.media.dec.jpeg.memcap=8000000
ro.media.enc.hprof.vid.bps=8000000
ro.media.enc.hprof.vid.fps=25
ro.media.panorama.defres=3264x1840
ro.media.panorama.frameres=1280x720
ro.camcorder.videoModes=true
ro.telephony.call_ring.delay=400
ro.ril.disable.power.collapse=0
ro.config.nocheckin=1
ro.config.hwfeature_wakeupkey=0
ro.lge.proximity.delay=20
ro.min_pointer_dur=8
ro.max.fling_velocity=15000
ro.min.fling_velocity=4000
ro.mot.eri.losalert.delay=900
ro.HOME_APP_MEM=8192
ro.FOREGROUND_APP_MEM=6144
ro.VISIBLE_APP_MEM=8192
ro.kernel.android.checkjni=0
ro.kernel.checkjni=0
ro.cwm.enable_key_repeat=true
dalvik.vm.checkjni=false
dev.pm.dyn_samplingrate=1
drm.service.enable=false
persist.hwc.mdpcomp.enable=false
persist.gps.qmienabled=true
persist.sys.use_dithering=0
persist.sys.scrollingcache=3
per_sec=300
com.qc.hdmi_out=true
com.qc.hardware=true
dalvik.vm.heapgrowthlimit=64m
dalvik.vm.heapsize=256m
dalvik.vm.heapidealfree=8388608
dalvik.vm.heapconcurrentstart=2097152
ring.delay=0
TCHTHR=28
ENFORCE_PROCESS_LIMIT=false
wifi.supplicant_scan_interval=300
AOSP only
dalvik.vm.heaptargetutilization=0.25
Touchwiz Only
dalvik.vm.heaputilization=0.25
Systctrl settings via Init.d (requires kernel with init.d support or enable initd with RyuInfernos apk link at bottom) (tested on same roms as Build Prop)
- * Thanks Zeppelinrox for talking some settings over with me.
- Help entropy pool
- read_wakeup_threshold to 1366
- write_wakeup_threshold to 128
http://db.tt/NilQsqG6
- Init.d for systctrl with the above set already and other optimized values
- Here guys this one is without anything special for entropy the values related to it are set to default on this one
- read_wakeup_threshold 64
- write_wakeup_threshold 128
- randomize_va_space 2
http://db.tt/rHcNuTfR
- Instructions:
Download. Using a file explorer, i like es file explorer go up from internal storage with a root explorer till you are at / you should see system, sys and much more. Go to /system/etc/initd/ and paste this file in there. Select it and go to properties of the file and select permissions. Change them to rwxrwxrwx. In other words enable read, write and execute for the three options user, system and other or whichever they are called. Now exit and reboot. Now at boot systctrl are applied. These are the presets system tuner sets plus a few tweaks by Freecharlesmanson (if you see him please be sure to give him thanks) and a fix for entropy where noted above.
- What is changed in the two systctrl (initd commands are as follows in the above files except the settings mentioned) (you can pick and choose and make your own initd script):
#!/system/bin/sh
echo "524288" > /proc/sys/fs/file-max
echo "32000" > /proc/sys/fs/inotify/max_queued_events
echo "256" > /proc/sys/fs/inotify/max_user_instances
echo "10240" > /proc/sys/fs/inotify/max_user_watches
echo "10" > /proc/sys/fs/lease-break-time
echo "64" > /proc/sys/kernel/random/read_wakeup_threshold
echo "128" > /proc/sys/kernel/random/write_wakeup_threshold
echo "65536" > /proc/sys/kernel/msgmax
echo "2048" > /proc/sys/kernel/msgmni
echo "10" > /proc/sys/kernel/panic
echo "'500 512000 64 2048'" > /proc/sys/kernel/sem
echo "268435456" > /proc/sys/kernel/shmmax
echo "524288" > /proc/sys/kernel/threads-max
echo "2" > /proc/sys/kernel/randomize_va_space
echo "10485760" > /proc/sys/net/core/optmem_max
echo "8388608" > /proc/sys/net/core/rmem_default
echo "65536" > /proc/sys/net/core/wmem_default
echo "524288" > /proc/sys/net/core/rmem_max
echo "524288" > /proc/sys/net/core/wmem_max
echo "'10485760 10485760 10485760'" > /proc/sys/net/ipv4/tcp_mem
echo "1" > /proc/sys/net/ipv4/tcp_no_metrics_save
echo "1" > /proc/sys/net/ipv4/tcp_rfc1337
echo "0" > /proc/sys/net/ipv4/tcp_ecn
echo "'6144 87380 524288'" > /proc/sys/net/ipv4/tcp_rmem
echo "1" > /proc/sys/net/ipv4/tcp_tw_recycle
echo "'6144 87380 524288'" > /proc/sys/net/ipv4/tcp_wmem
echo "35" > /proc/sys/vm/dirty_ratio
echo "40" > /proc/sys/vm/dirty_background_ratio
echo "5" > /proc/sys/vm/swappiness
echo "900" > /proc/sys/vm/dirty_expire_centisecs
echo "300" > /proc/sys/vm/dirty_writeback_centisecs
echo "100" > /proc/sys/vm/vfs_cache_pressure
echo "95" > /proc/sys/vm/overcommit_ratio
echo "3" > /proc/sys/vm/page-cluster
echo "4096" > /proc/sys/vm/min_free_kbytes
echo "3" > /proc/sys/vm/drop_caches
Recommended Juice Defender Setup - (Thanks Clothednblack)
Resources/Apps
#############
- Rescan Media Root (click link on phone and be sure to select launch link with play store)
https://play.google.com/store/apps/details?id=com.addz.mediascannerroot
- Kill Media Server (thanks for the link Jcdominguez)
http://www17.zippyshare.com/v/77111471/file.html
-Lux Auto Brightness (set brightness lower than stock minimum brightness on any rom)
https://play.google.com/store/apps/details?id=com.vito.lux
-Build Prop Editor free by Rom Toolbox maker Jrummy
https://play.google.com/store/apps/details?id=com.jrummy.apps.build.prop.editor
-Swipe Pad (thanks Naddict) make a easy to launch multitask launcher from anywhere a shortcut to Developer Options (great for aosp Hwoverlay))
https://play.google.com/store/apps/details?id=mobi.conduction.swipepad.android
-Known Wakelocks thread (Thanks T. J. Bender)
http://forum.xda-developers.com/showthread.php?p=31974989
-DS Battery Saver Pro (manage radios like juice defender with less overhead) (thanks for the link AdamDelozier)
http://forum.xda-developers.com/showthread.php?p=35046431
-Battery Review Thread including extended batteries (Thanks Rlatjs17)
http://forum.xda-developers.com/showthread.php?p=30478980
-Fast Reboot (closes/restarts apps and services similar to rebooting without a reboot)
https://play.google.com/store/apps/details?id=com.greatbytes.fastreboot&hl=en
-Better Batter Stats (track all forms of wake locks) (Thanks Sven Knispel)
https://play.google.com/store/apps/details?id=com.asksven.betterbatterystats
-Carat (track and discover battery drain prone apps)
https://play.google.com/store/apps/details?id=edu.berkeley.cs.amplab.carat.android
-Seeder 2.0.0b1 (Thanks Lambgx02)
http://forum.xda-developers.com/showthread.php?p=592
-Cpu Spy (check used mhz and deep sleep usage) (Thanks Brandon Valosek)
https://play.google.com/store/apps/details?id=com.bvalosek.cpuspy
-Universal Initd Support APK (Thanks RyuInferno) (enable check for initd support)
http://forum.xda-developers.com/showthread.php?t=1933849
-Lag Fix(fs-trim) (use trim to trim blocks labeled deleted from storage where blocks are still full) (thanks AuxLV)
http://forum.xda-developers.com/showpost.php?p=37029420&postcount=122
-CrossBreeder Combo MOD (combines three discussed entropy lag/lockup tweaks)
http://forum.xda-developers.com/showthread.php?p=37062006
-Flashable Recoveries (please thank Naddict for this amazing resource)
http://forum.xda-developers.com/showthread.php?p=35741601
President of {Team Kernelizers}
Im Gman and I approve this message
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Reserved
President of {Team Kernelizers}
Im Gman and I approve this message
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Reserved
President of {Team Kernelizers}
Im Gman and I approve this message
First! for iSaint!
(I've always wanted to do that)
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Expanding are we?
Team Kernelizers; Kernel tweaking at its finest.
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Sweet awesome to see
http://i1202.photobucket.com/albums/bb374/TexasEpic/ThePeoplesROM-KennyGlass123/daniel4653.png
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Told yall the work load is fixing to get heavier lnao
President of {Team Kernelizers}
Im Gman and I approve this message
Re: RadarFree for Pocket PC
well
Sent from my LG-LU6200 using xda app-developers app
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
galaxys3man30 said:
Told yall the work load is fixing to get heavier lnao
President of {Team Kernelizers}
Im Gman and I approve this message
Click to expand...
Click to collapse
Haha maybe you could have let someone take over the att ? Lol
http://i1202.photobucket.com/albums/bb374/TexasEpic/ThePeoplesROM-KennyGlass123/daniel4653.png
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
daniel4653 said:
Haha maybe you could have let someone take over the att ? Lol
http://i1202.photobucket.com/albums/bb374/TexasEpic/ThePeoplesROM-KennyGlass123/daniel4653.png
Click to expand...
Click to collapse
Lol ur right buddy I'm sure we will get penalty of help
President of {Team Kernelizers}
Im Gman and I approve this message
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
tx.takenori said:
well
Sent from my LG-LU6200 using xda app-developers app
Click to expand...
Click to collapse
Well what?
President of {Team Kernelizers}
Im Gman and I approve this message
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Bump
7000 lemons? wtf!?!
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Thanks guys. I just used aroma this morning. Will report back with questions.
sent from Task & KT JB AOKP ROM
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
New method with kernel updates you have to force stop ktweaker app and then clear data if it is done a different way it will not clear data it will leave some bad data behind its a flaw in the OS n not the app itself so I will write you a step by step on how to do this
Thanks ktoonzs for the new method of the ktweaker app
Ok here we go
Step 1: goto settings on the phone
Step2: goto app manager then all apps
Step3: scroll down to ktweaker app n open it
Step4: once open hit FORCE STOP and then hit CLEAR DATA
Step5: now reboot and flash your new update of ktoonzs kernel and all should be good to go after that
P.S. This has to be done before flash every new kernel update
Thanks again ktoonzs for the new info
President of {Team Kernelizers}
Im Gman and I approve this message
Just renamed /system/bin/smd and added .bak extension and now I've somehow lost root or atleast my apps that require root have all stopped functioning. Just tried to delete the new smd.bak file via ADB but that's not working so I'm trying a Nandroid now
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Jordayum said:
Just renamed /system/bin/smd and added .bak extension and now I've somehow lost root or atleast my apps that require root have all stopped functioning. Just tried to delete the new smd.bak file via ADB but that's not working so I'm trying a Nandroid now
Click to expand...
Click to collapse
Interesting. Those files have been renamed for ages and I've never heard of someone losing root. I do know that sometime super su acts weird
7000 lemons? wtf!?!
I'm thinking it borked SuperSU's path or something.. Nandroid fixed it anyhow
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
Jordayum said:
I'm thinking it borked SuperSU's path or something.. Nandroid fixed it anyhow
Click to expand...
Click to collapse
I agree. Try reinstalling su or supersu from the market
7000 lemons? wtf!?!
Re: [Team Kernelizers] {how to} Ktoonsnative governor and I/O tweaks {Aroma TK MOD 1.
New 1.0.2 update for TK Mod coming soon. Has some nice new goodies.
Team Kernelizers; Kernel tweaking at its finest.
[ROM][4.4.2][XXUGNH2][02/09] » Arrow ROM « v16.0.0 | Stable | Fast | Xposed Modules
Arrow ROM v16.0.0 | Fast | Stable | Smooth | Best Battery Life | Custom Settings
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
PLEASE MY FRIENDS, visit this thread for any discussion about Arrow ROM
http://forum.xda-developers.com/showthread.php?t=2364246
Thanks my friend Disturbed™
> Based on Last Stock Firmware Android 4.4 OFFICIAL (KitKat)
> Kernel Stock
> Deodex
> Rooted
> Busybox
> Zipalign
> All Samsung Features availables
>
Arrow ROM Extras (Settings)
* Battery Icon Select
* MultiWindows Manager
* CPU Spy
* STweaks
* Samsung Secrets Codes
* ViPER4Android (configure here: http://forum.xda-developers.com/showpost.php?p=39156757&postcount=4)
* Xposed Installer
* DPI Changer
* Wanam Xposed (read all features here: forum.xda-developers.com/showthread.php?t=2383484)
* Reboot
* Reboot into Recovery
* Reboot into Download
> Tweaks:
- Save Battery Power Tweak
- Fast Dormancy
- Screen fix delay
- Decrease dial out delay
- Better Signal
- Better call voice quality
- Makes Apps load faster and increases RAM
- Disable Google OTA Update checkin
- Disable Google Report service
- Allow the purge of assets to free-up more RAM
- Improve Scrolling
> CRT Effect
> 4 way Reboot
> All apps in MultiWindows
> Call REC
> No SMS auto converting in MMS
> Unlimited SMS recipient list
> Unlimited Contacts
> No incremental Ring
> No echo
> Stock email with disable restrictions
> Long press menu button to kill apps in second plane
> Hacked Camera App (Disabled Alerts "Can't use flash on low battery" & "Low Battery")
> Enabled AOSP Widget Power Control
> Enabled Widgets Driving Mode and Smart Network
> init.d support
> data/app enabled
> data/local enabled (for custom Bootanimations)
> Multi CSC
> All Languages enabled
> Large APN list
> GPS Hack
> Hosts to stop advertising in apps
> Auto Backup EFS Folder
> Sony X-Reality™ Engine
> STABLE
> FAST
> SMOOTH
> BEAUTY AOSP THEME
> And much more!
* Flash it at your own Risk, I don't take any responsibility for any Damage.
* Do not publish any mirror for my Rom! Only use link provided by me.
* Read this Thread and users comments, all the answers are there.
* If you use any part of my Rom or any Mod, ask first for permission, give credits and put link to my post.
* Please, don´t ask for ETA.
* For use any Xposed Modules (Wanam Xposed, DPI Changer, Xblast Tools, Nottach Xposed, etc), you need follow this steps first:
http://forum.xda-developers.com/showpost.php?p=43236006&postcount=5
* If you find a bug in Rom, let me know, thanks.
* Do not forget to say THANKS if I helped you.
* Any Donations will be very grateful.
MAKE BACKUP FIRST!!! (don't forget)
1 - Your phone needs to be Rooted
2 - Copy the ROM's .zip file to your phone (Internal SD)
3 - Reboot your phone into Recovery Mode
4 - Make a Full Wipes:
- Wipe data factory
- Wipe cache partition
- Wipe Dalvik cache (in Advanced)
5 - Install zip from sd card
6 - Choose the ROM's .zip file ( and wait 3 or 4 minutes for installation to complete)
7 - Reboot your system and you're ready, enjoy Arrow ROM!
If you use PhilZ Recovery, go to option Wipe Data/Factory Reset / Clean to Install a New ROM and the wipes will be made automatically
Changelog v16.0.0
> Based on Stock Firmware XXUGNH2 Android 4.4.2 OFFICIAL (KitKat)
> ALL SAMSUNG KNOX CRAP REMOVED!
> Kernel Stock Repacked
> Deodexed
> Rooted
> Busybox
> Zipalign
> Use Wanam Xposed for enable Call REC, 4 Way Reboot, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Updated LightManager app
> Updated Xposed Framework
> Updated Wanam Xposed
> Updated Wanam Xposed Torch
> Updated Viper4Android
> Updated Gmail
> Updated Play Store
> Updated 3MinitSettings
> Update more apps!
> New Battery Mod in Arrow Settings! Thanks to gharrington :good:
> Redesigned icons
> More fast and smooth!
> Best Battery Life!
> And much more!
Changelog v15.0.0
> Based on Stock Firmware XXUGNG3 Android 4.4.2 OFFICIAL (KitKat)
> ALL SAMSUNG KNOX CRAP REMOVED!
> Kernel Stock Repacked
> Deodexed
> Rooted
> Busybox
> Zipalign
> Use Wanam Xposed for enable Call REC, 4 Way Reboot, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> New Play Store app (Material Design)
> Updated LightManager app
> Updated Xposed Framework app
> Updated Wanam Xposed
> Update more apps!
> New Battery Mod in Arrow Settings! Thanks to gharrington
> More fast and smooth!
> Best Battery Life!
> And much more!
Changelog v14.0.0
> Based on Stock Firmware XXUFNE7 Android 4.4.2 OFFICIAL (KitKat)
> ALL SAMSUNG KNOX CRAP REMOVED!
> Kernel Stock Repacked
> Deodexed
> Rooted
> Busybox
> Zipalign
> Use Wanam Xposed for enable Call REC, 4 Way Reboot, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Fixed and updated Wanam Xposed
> Updated SystemUI Galaxy S5 Theme Xposed app
> Update more apps!
> New options in Arrow Settings
> OG Battery Mod in Arrow Settings
> More fast and smooth!
> Best Battery Life!
> And much more!
Changelog v13.0.0
> Based on Stock Firmware XXUFNE4 Android 4.4.2 OFFICIAL (KitKat)
> ALL SAMSUNG KNOX CRAP REMOVED!
> Kernel Stock Repacked
> Deodexed
> Rooted
> Busybox
> Zipalign
> Use Wanam Xposed for enable Call REC, 4 Way Reboot, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Updated Wanam Xposed
> Updated Xposed Franework
> Updated Play Store (KitKat 4.4.3)
> Updated ViPER4Android FX and XHiFi
> Update more apps!
> New options in Arrow Settings
> Added to Arrow Settings Wanam Torch Xposed app (Xposed Module)
> Added to Arrow Setting Light Manager App
> Added to Arrow Setting SystemUI Galaxy S5 Theme (Xposed Module)
> OG Battery Mod in Arrow Settings
> Super fast and smooth!
> More debloated!
> Best Battery Life!
> And much more!
Changelog v11.0.0
> Based on Stock Firmware XXUEMK8 Android 4.3 OFFICIAL (Jelly Bean)
> ALL SAMSUNG KNOX CRAP REMOVED!
> Kernel Perseus Alpha 14.1 (Thanks Andreilux :good
> Deodexed
> Rooted
> Busybox
> Zipalign
> Use Wanam Xposed for enable Call REC, 4 Way Reboot, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Updated Wanam Xposed
> Updated Xblast Tools
> Update more apps!
> Fixed Multi Windows Manager issue in Arrow Settings
> Super fast and smooth!
> More debloated!
> And much more!
Changelog v10.0.0
> Based on Stock Firmware UBUEMK1 Android 4.3 OFFICIAL (Jelly Bean)
> ALL SAMSUNG KNOX CRAP REMOVED!
> Kernel Perseus Alpha 14.1 (Thanks Andreilux :good
> Deodexed
> Rooted
> Busybox
> Zipalign
> Use Wanam Xposed for enable Call REC, 4 Way Reboot, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Updated Wanam Xposed
> Updated ViPER4Android FX and XHiFi
> Update more apps!
> Best battery life!
> Super fast and smooth!
> More debloated!
> And much more!
Changelog v9.0.0
FIRST!!!
IS RECOMENDED FLASH BY ODIN STOCK SER - I9500 XXUEMJ8
IF YOU HAVE INSTALLED OTHER CUSTOM ROM OR STOCK ROM XXUEMJ8, NOT NEED FLASH STOCK BY ODIN
IF YOU LOSE ROOT, FLASH UPDATE-SuperSU-v1.65 BY RECOVERY, DOWNLOAD HERE: http://d-h.st/FTE
> Based on Stock Firmware XXUEMJ9 Android 4.3 OFFICIAL (Jelly Bean)
> ALL SAMSUNG KNOX CRAP REMOVED!
> Kernel Perseus Alpha 14.1 (Thanks Andreilux :good
> Deodexed
> Rooted
> Busybox
> Zipalign
> Removed transitions effects, now stock Samsung transitions effect default in Rom
DOWNLOAD HERE ARROW ROM TRANSITIONS (Flash by Recovery without wipes): http://depositfiles.org/files/sljz543a8
> Use Wanam Xposed for enable Call REC, 4 Way Reboot, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Updated Xposed Installer
> Updated Wanam Xposed
> Updated Xblast Tools
> Updated Play Store (Android KitKat 4.4)
> Updated Gmail (Android KitKat 4.4)
> Updated Google Maps (Android KitKat 4.4)
> Updated Hangouts (Android KitKat 4.4)
> Updated Youtube
> Updated ViPER4Android FX and XHiFi
> Update more apps!
> Added app GenieWidget (Android KitKat 4.4)
> New information and style in About Phone (in Settings)
> More debloated
> And much more!
Changelog v8.0.0
FIRST!!!
IS RECOMENDED FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
IF YOU HAVE INSTALLED MODEM MG9, NOT NEED FLASH AGAIN
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
> Based on Stock Firmware XXUBMH1 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XXUBMH1
> Deodexed
> Rooted
> Busybox
> Zipalign
> More Fast and Smooth!
> Better Battery Life!
> Removed transitions effects, now stock Samsung transitions effect default in Rom
DOWNLOAD HERE ARROW ROM TRANSITIONS (Flash by Recovery without wipes): http://depositfiles.org/files/sljz543a8
> Use Wanam Xposed for enable Call REC, 4 Way Reboot, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Updated Wanam Xposed
> Updated Xblast Tools
> Updated Gmail
> Updated Google Maps
> Updated Hangouts
> Updated Youtube
> Update more apps!
> New Wallpapers in Wallpaper Chooser
> Apply new version 1.7 of Domination Theme by Vertumus
> New information and style in About Phone (in Settings)
> More improvements
> And much more!
Changelog v7.2.0
FULL WIPES IS RECOMENDED!!
FIRST!!!
IS RECOMENDED FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
IF YOU HAVE INSTALLED MODEM MG9, NOT NEED FLASH AGAIN
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
> Redesigned Arrow ROM Extras
> Added to Arrow ROM Extras app ViPER4Android XhiFi
> Updated Wanam Xposed
> Updated Xblast Tools
> Updated ViPER4Android
> Updated Google Maps
> Updated SuperUser + Binaries
> Updated Samsung Account (Samsung Service)
> Apply new version 1.7 of Domination Theme by Vertumus
> New information and style in About Phone (in Settings)
> More improvements
> More Fast!
> And much more!
Changelog v7.1.0
FIRST!!!
IS RECOMENDED FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
IF YOU HAVE INSTALLED MODEM MG9, NOT NEED FLASH AGAIN
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
> Added Torchlight Option in Settings (Settings/Display)
> Some changes in Arrow ROM Extras
> Added to Arrow ROM Extras app Nottach Xposed (customize Rom)
> Added to Arrow ROM Extras app Xblast Tools (customize Rom)
> Deleted Clock Color Status Bar from Arrow ROM Extras (use Xblast Tools is better)
> Use Wanam Xposed for enable Call REC, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Updated Wanam Xposed
> Updated SuperUser + Binaries
> Updated Samsung Account (Samsung Service)
> Themed Calculator (Domination Theme)
> More improvements
> And much more!
Changelog v7.0.0
FIRST!!!
IS RECOMENDED FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
IF YOU HAVE INSTALLED MODEM MG9, NOT NEED FLASH AGAIN
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
> Based on Stock Firmware UBUBMH1 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock UBUBMH1
> Deodexed
> Rooted
> Busybox
> Zipalign
> More Fast and Smooth!
> Better Battery Life!
> Use Wanam Xposed for enable Call REC, No SMS converting, Increase SMS limit, Long press back for kill apps and others options.
> Updated Gmail
> Update more apps!
> Apply new version 1.6 of Domination Theme by Vertumus
> Added ViPER4Android XHiFi (for complemented ViPER4Android FX)
> Stock email with disabled all restrictions
> App Camera Disabled Alerts "Can't use flash on low battery" & "Low Battery" (Exclusively for Arrow ROM!)
> All png's ultra optimized
> All Samsung features availables
> All features from previous versions of Arrow ROM
> And much more
Changelog v6.1.0
> Added more battery icons in Battery Select (Arrow ROM Extras/Battery Select)
> Added to Arrow ROM Extras app Wanam Xposed (Thanks wanam)
> Added to Arrow ROM Extras app Clock Color Mod, you can change:
- color clock in status bar
- color clock and date in status bar expanded
- center or right position clock in status bar
- and more!
> Updated ViPER4Android
> Updated Hangouts
> No incremental ring fixed
> Update more apps!
> Fixed some themed issues
> Some improvements
> More Tweaks for better performance
> All png's ultra optimized
> All Samsung features availables
> All features from previous versions of Arrow ROM
> And much more!
Changelog v6.0.0
FIRST!!!
IS RECOMENDED FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
IF YOU HAVE INSTALLED MODEM MG9, NOT NEED FLASH AGAIN
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
> Based on Stock Firmware XWUBMG7 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XWUBMG7
> Deodex
> Rooted
> Busybox
> Zipalign
> More Fast and Smooth!
> Added to Arrow ROM Extras app Battery Select for choose you battery icon! (Thanks OG)
> Added to Arrow ROM Extras app DPI Changer
> Updated YouTube
> Update more apps!
> More debloated!
> Added Torch app
> New Wallpapers from Nexus 7 (2013) Android JB 4.3
> Stock email with disabled all restrictions
> Long press menu button to kill apps in second plane
> App Camera Disabled Alerts "Can't use flash on low battery" & "Low Battery" (Exclusively for Arrow ROM!)
> Added Android JB 4.3 AOSP sounds (Ringtones, Alarms and Notifications)
> Enabled Power Control Widget (AOSP)
> Enabled Accessibility Turn off all sounds Widget (AOSP)
> Enabled Driving Mode Widget (AOSP)
> Enabled Config smart network Widget (AOSP)
> All png's ultra optimized
> All Samsung features availables
> All features from previous versions of Arrow ROM
> And much more!
Changelog v5.2.0
FIRST!!!
IS RECOMENDED FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
> Based on Stock Firmware XXUBMG9 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XXUBMG9
> Deodex
> Rooted
> Busybox
> Zipalign
> Added to Arrow ROM Extras app Battery Select for choose you battery icon! (Thanks OG)
> Added to Arrow ROM Extras app DPI Changer
> Updated Google Play Store
> Updated Google Maps
> Update more apps!
> Apply new version 1.5 of Domination Theme by Vertumus
> Fixed email (now show for who you send email)
> Fixed ViPER4Android ans Xposed apps
> Disable INK Effect (cause so much problems in Rom)
> Added Torch app
> App Camera Disabled Alerts "Can't use flash on low battery" & "Low Battery" (Exclusively for Arrow ROM!)
> Added Android JB 4.3 AOSP sounds (Ringtones, Alarms and Notifications)
> Enabled Power Control Widget (AOSP)
> Enabled Accessibility Turn off all sounds Widget (AOSP)
> Enabled Driving Mode Widget (AOSP)
> Enabled Config smart network Widget (AOSP)
> All png's ultra optimized
> All Samsung features availables
> All features from previous versions of Arrow ROM
> And much more!
Changelog v5.1.0
FIRST!!!
IS RECOMENDED FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
> Based on Stock Firmware XXUBMG9 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XXUBMG9
> Deodex
> Rooted
> Busybox
> Zipalign
> Enable INK Effect (only color blue for now)
> Added to Arrow ROM Extras app ViPER4Android for awesome music quality!
configure mod here: http://forum.xda-developers.com/showpost.php?p=39156757&postcount=4
> Added to Arrow ROM Extras app Xposed
> Updated Play Store
> Updated Superuser + binaries
> Updated Google Maps
> Update more apps!
> Apply new version 1.5 of Domination Theme by Vertumus
> New Wallpapers from Nexus 7 (2013) Android JB 4.3
> Stock email with disabled all restrictions
> Long press menu button to kill apps in second plane
> App Camera Disabled Alerts "Can't use flash on low battery" & "Low Battery" (Exclusively for Arrow ROM!)
> Added Android JB 4.3 AOSP sounds (Ringtones, Alarms and Notifications)
> Enabled Power Control Widget (AOSP)
> Enabled Accessibility Turn off all sounds Widget (AOSP)
> Enabled Driving Mode Widget (AOSP)
> Enabled Config smart network Widget (AOSP)
> All png's ultra optimized
> All Samsung features availables
> All features from previous versions of Arrow ROM
> And much more!
Changelog v5.0.0
FIRST!!!
IS RECOMENDED FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
> Based on Stock Firmware XXUBMG9 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XXUBMG9
> Deodex
> Rooted
> Busybox
> Zipalign
> More FAST and STABLE!
> Added Tweaks for:
- Decrease dial out delay
- Allow the purge of assets to free-up more RAM
- Makes Apps load faster and increases RAM
> Updated Superuser + binaries
> Updated Google Maps
> Updated Gms Core
> Update more apps!
> New Wallpapers from Nexus 7 (2013) Android JB 4.3
> Stock email with disabled all restrictions
> Long press menu button to kill apps in second plane
> App Camera Disabled Alerts "Can't use flash on low battery" & "Low Battery" (Exclusively for Arrow ROM!)
> Added Android JB 4.3 AOSP sounds (Ringtones, Alarms and Notifications)
> Enabled Power Control Widget (AOSP)
> Enabled Accessibility Turn off all sounds Widget (AOSP)
> Enabled Driving Mode Widget (AOSP)
> Enabled Config smart network Widget (AOSP)
> All png's ultra optimized
> More debloated
> All Samsung features availables
> Sony X-Reality™ Engine (for better quality in videos and images)
> Original Samsung Font
Sony Sketch font from v1.0.0, download here: http://depositfiles.org/files/b7tk3kkrb
Flash by Recovery, no wipes needed
> All features from previous versions of Arrow ROM
> No smearing issue
> And much more!
Changelog v4.0.0
> Based on Stock Firmware XWUBMG5 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XWUBMG5
> Deodex
> Rooted
> Busybox
> Zipalign
> New Play Store 4.2.9
> Update Superuser + binaries
> Update Hangouts
> Update Youtube
> Update more apps!
> New Wallpapers from Nexus 7 (2013) Android JB 4.3
> New Status Bar (Domination Theme 1.4)
> Enable folder local for Custom Bootanimation
> Stock email with disable restrictions
> Long press menu button to kill apps in second plane
> App Camera Disabled Alerts "Can't use flash on low battery" & "Low Battery"
> Added Android JB 4.3 AOSP sounds (Ringtones, Alarms and Notifications)
> Enabled Power Control Widget (AOSP)
> Enabled Accessibility Turn off all sounds Widget (AOSP)
> Enabled Driving Mode Widget (AOSP)
> Enabled Config smart network Widget (AOSP)
> Apply new version 1.4 of Domination Theme by Vertumus
> All png's ultra optimized
> Eliminated more Apps (Samsung Books, Music, Videos, etc)
> All Samsung features availables
> Sony X-Reality™ Engine (for better quality in videos and images)
> Original Samsung Font
Sony Sketch font from v1.0.0, download here: http://depositfiles.org/files/b7tk3kkrb
Flash by Recovery, no wipes needed
> All features from previous versions of Arrow ROM
> No smearing issue
> More Fast and Stable!
> And much more!
Changelog v3.2.0
> Based on Stock Firmware XWUBMG1 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XWUBMG1
> Deodex
> Rooted
> Busybox
> Zipalign
> Long press menu button to kill apps in second plane
> App Camera with Better Audio & Video Quality Bitrate and Disabled Alerts "Can't use flash on low battery" & "Low Battery"
> Added Android JB 4.3 AOSP sounds (Ringtones, Alarms and Notifications)
> Enabled Power Control Widget (AOSP)
> Enabled Accessibility Turn off all sounds Widget (AOSP)
> Enabled Driving Mode Widget (AOSP)
> Enabled Config smart network Widget (AOSP)
> Fixed Theme (Email tab, etc)
> Fixed Theme (Music Player tab)
> Fixed scrubbers volume button
> Apply new version 1.4 of Domination Theme by Vertumus
> New MMS theme (AOSP style)
> All png's ultra optimized
> Eliminated more Apps (links to download apps in second post)
> All Samsung features availables
> Sony X-Reality™ Engine (for better quality in videos and images)
> Original Samsung Font
Sony Sketch font from v1.0.0, download here: http://depositfiles.org/files/b7tk3kkrb
Flash by Recovery, no wipes needed
> All features from previous versions of Arrow ROM
> And much more!
Changelog v3.1.0
> Based on Stock Firmware XWUBMG1 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XWUBMG1
> Deodex
> Rooted
> Busybox
> Zipalign
> New Tweaks in build,prop (better scrolling and more)
> New Google Play
> Added STweaks in Arrow ROM Settings (use Adam or Perseus Kernel for make changes)
> Fixed Theme (Email tab, etc)
> Fixed scrubbers volume button
> All png's ultra optimized
> More Debloated
> All Samsung features availables
> Sony X-Reality™ Engine (for better quality in videos and images)
> Original Samsung Font
Sony Sketch font from v1.0.0, download here: http://depositfiles.org/files/b7tk3kkrb
Flash by Recovery, no wipes needed
> All features from previous versions of Arrow ROM
> And much more!
Changelog v3.0.0
> Based on Stock Firmware XWUBMG1 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XWUBMG1
> Deodex
> Rooted
> Busybox
> Zipalign
> New inicial updater script
> News features in Themed!
> New Framework Animations!
> Best battery life!
> More free Ram
> New Google Maps 7.0.1
> Added Samsung Secrets Codes in Arrow ROM Settings
> Deleted OTA Updates
> More Debloated
> All Samsung features availables
> New icons in Apps
> Sony X-Reality™ Engine (for better quality in videos and images)
> Original Samsung Font
Sony Sketch font from v1.0.0, download here: http://depositfiles.org/files/b7tk3kkrb
Flash by Recovery, no wipes needed
> And much more!
Changelog v2.0.0
> Based on Stock Firmware XWUBMF8 Android 4.2.2 OFFICIAL (Jelly Bean)
> Kernel Stock XWUBMF8
> Deodex
> Rooted
> Busybox
> Zipalign
> New inicial updater script
> Themed in Email fixed
> Improvements is theme
> Best battery life!
> More ram free
> More stability and smoothness
> Update Gmail
> Update SuperSU
> Update Google Maps
> Google Services
> Update Blurb
> Update Talk
> Update talkback
> All CSC Package
> Original Samsung Font
Sony Sketch font from v1.0.0, download here: http://depositfiles.org/files/b7tk3kkrb
Flash by Recovery, no wipes needed
> And much more!
Arrow ROM v16.0.0 XXUGNH2 K.K. 4.4.2
http://forum.xda-developers.com/showpost.php?p=45271208&postcount=2
Arrow ROM v15.0.0 XXUGNG3 K.K. 4.4.2
http://forum.xda-developers.com/showpost.php?p=45271208&postcount=2
Arrow ROM v14.0.0 XXUFNE7 K.K. 4.4.2
First Flash Arrow ROM v14.0.0 STOCK THEME: http://forum.xda-developers.com/showpost.php?p=45271208&postcount=2
Arrow ROM v13.0.0 XXUFNE4 K.K. 4.4.2
First Flash Arrow ROM v13.0.0 STOCK THEME: http://forum.xda-developers.com/showpost.php?p=45271208&postcount=2
Arrow ROM v11.0.0 XXUEMK8 J.B. 4.3
First Flash Arrow ROM v11.0.0 STOCK THEME: http://forum.xda-developers.com/showpost.php?p=45271208&postcount=2
Make one Wipe Dalvik Cache and flash Arrow THEME for v11.0.0:
Arrow ROM v10.0.0 UBUEMK1 J.B. 4.3
First Flash Arrow ROM v10.0.0 STOCK THEME: http://forum.xda-developers.com/showpost.php?p=45271208&postcount=2
Make one Wipe Dalvik Cache and flash Arrow THEME for v10.0.0: http://ul.to/3zsvx1sx
Arrow ROM v9.0.0 XXUEMJ9 J.B. 4.3
First Flash Arrow ROM v9.0.0 STOCK THEME: http://forum.xda-developers.com/showpost.php?p=45271208&postcount=2
Make one Wipe Dalvik Cache and flash Arrow THEME for v9.0.0: http://ul.to/p8nfgy8v
Arrow ROM v8.0.0 XXUBMH1
MD5: 793f0ab1491bed5ccf98d84f300cf598
https://mega.co.nz/#!TI5mmbSZ!HlOSmW_xJA0ZmakOjOdsLVH6BlsZFMfAEfhCMexlsXk
http://d-h.st/lYd
Arrow ROM v7.2.0 UBUBMH1
MD5: 54760457f22b7c70e1ea10c93ede840e
https://mega.co.nz/#!nYRxFR4Z!CSnslQHfATQCXzP5Mb52dhb2xVAENkmyJaIsJR4q09U
https://docs.google.com/file/d/0B6KjxRnsRJtobE0zc0syWl8tVHc/edit?usp=sharing
Arrow ROM v7.1.0 UBUBMH1
MD5: c2188a9191c9386d1819beb8d9eb786a
https://mega.co.nz/#!6QxQ3JoR!XO2jZUxwXRIqmwqszjwS70hfcwENohwNaObrOPBGt1E
Arrow ROM v7.0.0 UBUBMH1
MD5: 74D7A213CE671FC87EC4E0446F586889
https://mega.co.nz
/#!bB4QGSQR!Vx_sHg83CjxorEm34MAzM3WOIrBmG421MVcq-PZxY8c
http://forum.xda-developers.com/attachment.php?attachmentid=2220811&d=1377769824
Arrow ROM v6.1.0 XWUBMG7
https://mega.co.nz/#!fdRDmJYb!afbMLGB-bb-l75_vp1Z65VLXNPQSAYTM8VXBseCYMI8
Arrow ROM v6.0.0 XWUBMG7
https://mega.co.nz/#!bBp3iCBa!c3_IBG96j2IwAZbnf2BzRSbvgLAvCTc0M1L_nmcp1H0
Arrow ROM v5.2.0 XXUBMG9
https://mega.co.nz/#!bcpSmAIJ!PtLoUCIvVI4YMBhzDpPNZRNcO1t-7oGZRJ33xjkBzw0
Arrow ROM v5.1.0 XXUBMG9
https://mega.co.nz/#!uEliBY7b!Lp6-7SCjX-j9hwcnwLyX4AMn9UQTLMnKuMtpfvGW1oo
Arrow ROM v5.0.0 XXUBMG9
https://docs.google.com/uc?id=0B3Bin9RiNxqOcDVjUk4wcjBjTlk&export=download
https://mega.co.nz/#!1ZhiFBpZ!ZNNFj2gjVjQdvekZl5X2IBWoyuFWivHHY_5EVqqKS1A
Arrow ROM v4.0.0 XWUBMG5
https://drive.google.com/uc?id=0B7GUiETSUKGoMmd0T1VSaENBZVU&export=download
https://mega.co.nz/#!Ykw1zIbQ!eRyLDxKjguoAxS0bcvrxGg0uCbBV8l6QbF8e7EtBJ8s
Arrow ROM v3.2.0 XWUBMG1
http://d-h.st/GMc
https://mega.co.nz/#!6M0wmQza!eLzpb1aq6hmXBneBjuw_dBZMV00BwL1bq7XXxpinnzc
Arrow ROM v3.1.0 XWUBMG1
http://d-h.st/HMc
Arrow ROM v3.0.0 XWUBMG1
https://docs.google.com/uc?id=0B7GUiETSUKGocEJYSU5EaEVZaGs&export=download
https://mega.co.nz/#!YdERRYID!ZzFE0D3RnrPELKje-aNaUDV1LsU3E-9j5QXCoO8_J0Y
Arrow ROM v2.0.0 XWUBMF8
https://mega.co.nz/#!IQp3yRTY!HYm-EnO4Btcp4m7Nt1DsQTQUXKhh1KnaC_QHF7RI38Q[/SIZE]
https://docs.google.com/file/d/0B_rMaA9i_MUSbWRFZUxfdTE4NDQ/edit
Arrow ROM v1.0.0 XXUBMF8
https://mega.co.nz/#!EEwwzBRI!Lo3CeCmUU0nWHkwual_hBk_qekEXybXLwtZrQitYwm8
* Android (Google)
* Samsung
* XDA Developers
* Chainfire
* dsixda
* wanam
* Tamirda
* Vertumus
* ficeto
* Andreilux
* vicino
* grgsiocl
* Disturbed™
* bobdoblo
* Rosario34
* bjbinc
* zhuhang
* ViPER520
* rovo89
* Tungstwenty
* Manniakk
* Giuseppe Baglio
* Rixsta
* daveyannihilation
* gharrington
* czar22
* sorg
* criscan
* NadMaj
* OsamaGhareeb
* Nottach
* xperiacle
* FemBlack
* ALL DEVELOPERS!
* ALL USERES for support and help me!
* To my Donors! Thanks friends!
Please, sendme pm if forgot you
THANKS!!
XDA:DevDB Information
[GT-I9500] » Arrow ROM «, ROM for the Samsung Galaxy S 4
Contributors
» Arrow «, bobdoblo, bombaybadboy
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.4.x
ROM Firmware Required: Galaxy S4 - Root - Custom Recovery
Based On: Stock Samsung Firmwares
Version Information
Status: Stable
Current Stable Version: v16.0.0
Created 2013-09-04
Last Updated 2014-09-03
Arrow ROM STOCK THEME
> All features of original Arrow ROM!
> All Samsung Features!
> Deodex
> Rooted
> Busybox
> Zipalign
> Stock Kernel
> Super SU + Binaries
> Arrow ROM Extras (Settings)
> And much more!!
Arrow ROM v16.0.0 XXUGNH2 K.K. 4.4.2 (STOCK THEME)
https://mega.co.nz/#!GAxQQICY!pc0zqowT6L6R7AF3Q-stL03-j5DJ9tm_oY0h7I_GJCw
Arrow ROM v15.0.0 XXUGNG3 K.K. 4.4.2 (STOCK THEME)
chrome://mega/content/secure.html#!yZgCCABb!Xqui2uJ_RvcRbMf271MVQ6Pk7ZpuFK2XT1xz0sCncQA
https://docs.google.com/uc?id=0B_FtYSlFqHy_M3EzRElycVhVV3c&export=download
Arrow ROM v14.0.0 XXUFNE7 K.K. 4.4.2 (STOCK THEME)
chrome://mega/content/secure.html#!mUJHULLQ!fEK-u1ZL4AphbjU-TwrfqF5DxuoWB3F3bkKuAidFRJE
Arrow ROM v13.0.0 XXUFNE4 K.K. 4.4.2 (STOCK THEME)
chrome://mega/content/secure.html#!OJJHRCpA!T6R2zDwx0PYuxqos76WDTBdswW833Hc0e8kgVLtujWo
Arrow ROM v11.0.0 XXUEMK8 J.B. 4.3 (STOCK THEME)
MD5: A4116946ACEFE9814ECFAEF970C721EA
https://mega.co.nz/#!uI4TyZaD!NbRPWHyf1lQNeqCbAzA4OhZIXrwuVZMUM650PAd-ts8
http://d-h.st/6aS
Arrow ROM v10.0.0 UBUEMK1 J.B. 4.3 (STOCK THEME)
MD5: 6EE569DA5368F128DD281B3100D080C5
https://docs.google.com/uc?id=0B3Bin9RiNxqOSjhIbm9GaXVWd2M&export=download
http://d-h.st/Z0Z
https://mega.co.nz/#!rA901ZBB!GIq6ZhPNpeq4yOGMQ8XJJX35Ga4Qaxujh-yXaXvxnPY
https://drive.google.com/folderview?id=0BzQmYFoAuXC2cGFqUXZoT29OU2s&usp=sharing
Arrow ROM v9.0.0 XXUEMJ9 J.B. 4.3 (STOCK THEME)
MD5: CBCD4C169BB640D0C35D43E4FAC5D837
https://mega.co.nz/#!CYgHWB6Y!HW1Kpy28AXomfVfBZ3WpBhlPr_8mj4dpKOMiQ17qOYU
http://d-h.st/sZe
Arrow ROM v8.0.0 XXUBMH1 (STOCK THEME)
MD5: 7daf3cc5f820d3beb0f60362719ff5b1
https://mega.co.nz/#!idpFCT4D!TTPwc2emiujo0hmBzxS7mwBbLUpNord99iGZas8IsKY
Arrow ROM v7.2.0 UBUBMH1 (STOCK THEME)
MD5: c51cbe88349686393e9952876d74471e
https://mega.co.nz/#!GVAyAYgS!Hpp4yDu0iC0lyACP1d8iSHETGrg-RRrOENlpNborgbE
Arrow ROM v7.1.0 UBUBMH1 (STOCK THEME)
MD5: fbd2c95560c6c7056ee4c868b8874af1
https://mega.co.nz/#!GFBihSTb!QrMfKD9sl3FDijrNe57-K1zgHJI0RKE8GbqSlkUhDRA
Arrow ROM v7.0.0 UBUBMH1 (STOCK THEME)
MD5: a4fbdf74bdfa3cf7ab7f68094bb0e1a2
https://mega.co.nz/#!LUZlVKBT!MEroVAgdysRTlouJN6qx2jLuBy4Tvk5fN6fhzW3WYCA
Arrow ROM v6.1.0 XWUBMG7 (STOCK THEME)
https://mega.co.nz/#!mMQThZZJ!VrdyaWeK809W6oksk8aiBB3ON2FTOeauP7bw96ZGO9A
Arrow ROM v6.0.0 XWUBMG7 (STOCK THEME)
https://mega.co.nz/#!SZAEnYgK!X3OeLXVlYYX2dwAc9hRR1C0tZhQOEeqE2UcT9a02gyM
Arrow ROM v5.1.0 XXUBMG9 (STOCK THEME)
https://mega.co.nz/#!XYJkwZYB!Y1iKqQoFiWS7-2arBxV6aTyY9hkUiBsChj02a2tlicc
http://d-h.st/YMW
FOR v5.0.0 STOCK THEME, FIRST FLASH BY ODIN MODEM XXUBMG9 FOR NOT LOOSE IMEI AND DATA CONNECTIONS
Download MODEM XXUBMG9 here: http://depositfiles.org/files/1gkdh52gm
Arrow ROM v5.0.0 XXUBMG9 (STOCK THEME)
https://docs.google.com/uc?id=0B3Bin9RiNxqOTjJob204ZU9EVUk&export=download
Arrow ROM v4.0.0 XWUBMG5 (STOCK THEME)
https://drive.google.com/uc?id=0B3Bin9RiNxqOQVBSUHg3VmtVRnc&export=download
ENJOY ROM MY FRIENDS!
Applications eliminated in ROM - Consumptions and Videos of Arrow ROM
AllSharePlay15.apk
Blurb.apk
ChatON_feature.apk
ChatONV_J.apk
Chrome.apk
Com2usPoker_ASGC.apk
Dropbox.apk
DropboxOOBE.apk
Earth.apk
Episodes.apk
Flipboard.apk
FotaClient.apk
GroupPlay_25.apk
InteractiveKeyguardTutorial.apk
InteractiveTutorial.apk
KLMSAgent.apk
KNOXAgent.apk
KnoxAttestationAgent.apk
KNOXStore.apk
KNOXStub.apk
LocalFOTA.apk
Magazines.apk
Match3VS.apk
Music2.apk
PlayGames.apk
PlusOne.apk
PolarisViewer5.apk
SamsungBooks.apk
SamsungGames.apk
SamsungHub.apk
SamsungHubUpdater.apk
SamsungLearning.apk
SamsungLink18.apk
SamsungMusic10.apk
SamsungVideo.apk
SecWalletmanager.apk (cause FC in NFC)
SHealth2_5.apk
TravelService.apk
TravelWidget.apk
TripAdvisor.apk
Talkback
WebManual.apk
YahoonewsPhone2013.apk
YahoostockPhone2013.apk
* AllSharePlay15.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.sec.pcw)
* Blurb.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.blurb.checkout)
* ChatON_feature.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.sec.chaton)
* Chrome.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.android.chrome)
* Dropbox.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.dropbox.android)
* Earth.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.google.earth)
* Flipboard.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=flipboard.app)
* Magazines.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.google.android.apps.currents)
* PlusOne.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.google.android.apps.plus)
* TripAdvisor.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.tripadvisor.tripadvisor)
* talkback.apk (DOWNLOAD FROM PLAY STORE HERE: https://play.google.com/store/apps/details?id=com.google.android.marvin.talkback)
FOR BETTER DEBLOATED, USE THIS SCRIPT
Trully Clean Script
Thanks to schoolsux
http://forum.xda-developers.com/showthread.php?t=2307355
Thanks to my friend hamdogg
Thanks to http://galaxys4root.com
Thanks to my friend nabil alami
Thanks to my friend Guillermo Osorio
Thanks to my friend TechnoKid099
Thanks to my friend Secktor Slytherin
Thanks to my friend ikylilboy (MobileTechVideos2)
Thanks to my friend rahulrai
Thanks to my friend RED LEMOS
MODEMS - KERNELS - MODS - FONTS and More!
For Arrow ROM
Flash by Recovery, no wipes needed
- Stock Kernel UBUEMK1 Android 4.3: http://ul.to/b463o1un
- Stock Kernel XXUEMJ9 Android 4.3: http://depositfiles.org/files/whw76yyfn
- Stock Kernel XXUBMH1: http://depositfiles.org/files/e69ngnef1
- Stock Kernel UBUBMH1: http://depositfiles.org/files/tfvevvsf0
- Stock Kernel XWUBMG7: http://depositfiles.org/files/qf4bpxbnq
- Stock Kernel XXUBMG9: http://depositfiles.org/files/315ygr0xk
- Stock Kernel XWUBMG5: http://depositfiles.org/files/3sj9i1baz
- Stock Kernel XWUBMG1: http://depositfiles.org/files/sqqo02xdg
- Modem DDUBMF8 India: http://depositfiles.org/files/b42wfrtth
- Modem UBUBMH1 Guatemala: http://depositfiles.org/files/p0a5cmtz1
>> --------------------------------------- << <> >> --------------------------------------- <<
Mod 100% Transparent Status Bar
* For Arrow ROM v10.0.0 http://ul.to/iolwxrfp
* For Arrow ROM v9.0.0 http://ul.to/off2dzpp
* For Arrow ROM v8.0.0 http://depositfiles.org/files/wzhe5nleh
* For Arrow ROM v7.2.0 http://depositfiles.org/files/cfpn3xy9i
* For Arrow ROM v7.1.0 http://depositfiles.org/files/9w5zubzvv
* For Arrow ROM v7.0.0 http://depositfiles.org/files/d4c1ojcch
* For Arrow ROM v6.1.0 http://depositfiles.org/files/07ore4l1f
* For Arrow ROM v6.0.0 http://depositfiles.org/files/tj363u4ue
* For Arrow ROM v5.2.0 http://depositfiles.org/files/pr67kqtn9
* For Arrow ROM v5.1.0 http://depositfiles.org/files/o73pjki5y
* For Arrow ROM v5.0.0 http://depositfiles.org/files/5u58bvuhq
* For Arrow ROM v4.0.0 http://depositfiles.org/files/srthr0hqk
>> --------------------------------------- << <> >> --------------------------------------- <<
Mod 100% Transparent Status Bar and % Battery with charge animations
* For Arrow ROM v5.1.0 http://depositfiles.org/files/ncs9km1th
* For Arrow ROM v5.0.0 http://depositfiles.org/files/f7zl3bwwt
* For Arrow ROM v4.0.0 http://depositfiles.org/files/5j50p1dhc
>> --------------------------------------- << <> >> --------------------------------------- <<
Mod % Battery with charge animation (Black Status Bar)
* For Arrow ROM v5.1.0 http://depositfiles.org/files/xpxpkxxxr
* For Arrow ROM v5.0.0 http://depositfiles.org/files/d5sp0l43q
* For Arrow ROM v4.0.0 http://depositfiles.org/files/aocl48qdd
* For Arrow ROM v3.2.0 http://depositfiles.org/files/ft9lgi0s8
* For Arrow ROM v3.1.0 http://depositfiles.org/files/jrbyc9lss
* For Arrow ROM v3.0.0 http://depositfiles.org/files/kc77i95dr
>> --------------------------------------- << <> >> --------------------------------------- <<
Mod Disable CRT Effect
* For Arrow ROM v8.0.0 http://depositfiles.org/files/f49ffykir
* For Arrow ROM v7.2.0 http://depositfiles.org/files/bghwaz0by
* For Arrow ROM v7.1.0 http://depositfiles.org/files/nqss5xk50
* For Arrow ROM v7.0.0 http://depositfiles.org/files/506lhiuvx
* For Arrow ROM v6.1.0 http://depositfiles.org/files/f8bydtcak
* For Arrow ROM v6.0.0 http://depositfiles.org/files/is1ofd96e
* For Arrow ROM v5.2.0 http://depositfiles.org/files/ync4cx7zi
>> --------------------------------------- << <> >> --------------------------------------- <<
Mod Hide Call Button On Contacts & Log (Work on all Arrow ROM versions)
* For all Arrow ROM versions: http://d-h.st/Lut
ORIGINAL STOCK SAMSUNG TRANSITIONS EFFECTS for Arrow ROM
Flash by Recovery, no wipes needed, and after flash mod delete with root explorer folder call anim-sw720dp in system/framework/framework-res.apk/res
http://depositfiles.org/files/m2w6loz4y
ORIGINAL STOCK SAMSUNG FONT for Arrow ROM
Flash by Recovery, no wipes needed
http://depositfiles.org/files/3qpv5ew8l
SONY SKETCH FONT for Arrow ROM (Font used in screenshots)
Flash by Recovery, no wipes needed
http://depositfiles.org/files/b7tk3kkrb
FLASH PLAYER
For install Adobe Flash Player on Galaxy S4, follow this
http://forum.xda-developers.com/showthread.php?t=2253898
Thanks to Lucidmike
BANNER for Users
For use any Xposed Modules (Wanam Xposed, DPI Changer, Xblast Tools, Nottach Xposed, etc), you need follow this steps first:
1- Go to Arrow ROM Extras/Xposed Modules and open Xposed Installer.
2- Press button Install/Update.
3- Press OK and reboot phone
4- Open Xposed Installer again and go to MODULES and select Apps (enable or disable apps).
5- Open Xposed Module (Wanam Xposed, DPI Changer, Clock Status Bar, Nottach Xposed, etc) and activate or desactivate options.
6- Reboot and enjoy.
REMEMBER! For any change to take effect in Xposed Modules, you must restart the phone
Reserved
Nice
Sent from my GT-I9500
will definitely try your roms once i've decided to root my phone
Crash 1976 said:
Nice
Sent from my GT-I9500
Click to expand...
Click to collapse
Thanks Crash my friend!
regards!
zekurosu said:
will definitely try your roms once i've decided to root my phone
Click to expand...
Click to collapse
thanks my friend! :good:
cheers
I send you a pm if you need servers I have 2 accounts on dev host
You can upload the rom there
Hugs
Sent from my GT-I9500
Crash 1976 said:
I send you a pm if you need servers I have 2 accounts on dev host
You can upload the rom there
Hugs
Sent from my GT-I9500
Click to expand...
Click to collapse
yes, i respond mp friend!
Thanks!! i upload rom in Mega, but no problem to upload in your server :good:
regards!
Every little piece made with "incredible" taste. And it's very rare.
I have a question you are the one who made a theme?
Regards.
Avetis
avetny said:
Every little piece made with "incredible" taste. And it's very rare.
I have a question you are the one who made a theme?
Regards.
Avetis
Click to expand...
Click to collapse
thanks avetny :good:
regards
Nice mate. I like it. Very clean and a fresh look for our i9500...
Great job! I've also put it in the ROM and Kernel post here:
LINK
Wow one more rom for 9500
Thanks bro....
Sent from my GT-I9500 using xda premium
Arrow ROM v1.0.0
ONLINE
https://mega.co.nz/#!EEwwzBRI!Lo3CeCmUU0nWHkwual_hBk_qekEXybXLwtZrQitYwm8
Its first release, any issue report to me for fix.
Thanks to all
Enjoy!
wow, a new ROM come into town..
congratulations thanks for developing it.
thanks for supporting the i9500, will definitely try this rom
Glen said:
wow, a new ROM come into town..
congratulations thanks for developing it.
Click to expand...
Click to collapse
Jason2k13 said:
thanks for supporting the i9500, will definitely try this rom
Click to expand...
Click to collapse
thanks my friend! :good:
enjoy rom
cheers!
Loving the rom. Was just wondering if it would be possible to change the font back to normal through a flashable zip or something
MachineX ROMOnly for S4 Qualcomm® Snapdragon™ 600 processorBased on the latest I9505XXUPQG1 from Samsung
“If you respect your time as we do, come with us for something fast and lightweight.
We even do it without losing stock TW ROMs functionality, enhancing it in a way!”
Code:
***MachineX ROM was tested many times by me and beta testers before this release.
But I hold no responsibility for the thermonuclear war, failed alarm sounds on your phone or any of your files lost.
The decision to make mods to your for is made by YOU, not me.
Introduction
I thought it might be good to demonstrate my concept, which is:
Odexed custom ROM (maybe the first LP TW ROM of this kind)
Embedded signature spoofing (switchable)
Embedded microG instead of gapps (with Contacts/Calendar sync)
Native overlays with layer manager app and pre-installed black theme
Custom theming for Black UI lovers and custom boot animation
Some hacked binaries (libsurfaceflinger.so), busybox and scripts pre-installed
The needed system apps updated and S6, N5 apps included
And finally it comes with machinex kernel from @Robcore pre-installed
Click to expand...
Click to collapse
Images
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
For more screenshots, please visit this folder - link on pCloud.
Click to expand...
Click to collapse
Features
This is quite an unusual ROM. Please don’t expect from this ROM:
Ported MM Samsung frameworks (there are other superb ROMs with this feature)
A ton of UI customization and S7, N7, S8, N8 – like eye-candy by default
What you SHOULD expect from this ROM:
Odexed custom LP TW ROM – pre-optimized for speed + max. storage space.
Original black theme enabled by default, switchable by Layer Manager app.
Debloated fully: if you need some app, you can install it from Play Market
No Gapps, only microG (it’s enough for the most of the users, we think)
Click to expand...
Click to collapse
Installation instructions
Check your bootloader and modem version. I9505XXUPQK1 is recommended (links below).
Flash ROM in recovery. SupeSU/magisk, busybox and machinex kernel will be installed automatically.
I don't guarantee correct work of this ROM with dirty flashing.
The CSC (regional) files will be also installed automatically according to your phone current CSC code.
Reboot device. First boot usually takes less than one minute.
(OPTIONAL) Open «Developement settings» (you can enable them in Settings- About device- tap 7 times on the ROM version).
(OPTIONAL) Under «Developement settings», scroll to the very bottom, «signature spoofing» should be enabled.
(OPTIONAL) (microG only)In MigroG settings, Device Registration and "Google Cloud Messaging" should be enabled
(this can be switched off after Google Account setup, if required)
Setup Google account normally. In some cases, wiping data of Play Store may be needed after Google Account was set.
(OPTIONAL) Enable UnifieldNlp (Network Location providers) in GPS settings. (microG only)
If you decide to switch to stock kernel, don't forget to flash https://www.androidfilehost.com/?fid=385035244224412313
(Now the stock kernel installer also contains machinex kernel uninstaller)
Click to expand...
Click to collapse
Changelog
MachineX ROM Mark 4.3 (Feb 2018) - 4th public release version
- Updated ROM base to the latest I9505XXUHQK1 base (Samsung Nov 2017 build) with all previous tweaks
- Updated some colors, icons, animations and layouts in framework-res.apk (Thanks to Lenny Bard)
- Updated icons in AccuWeather widget (Thanks to Lenny Bard)
- Updated Google Play Store to the version 9.0.15-all [0] [PR] 186388994
- Updated Google Play services to version 12.2.17 (238-186052348)
- Updated WebViewGoogle to the latest version 64.0.3282.137
- Updated Samsung Internet Browser to version 7.0.10.46
- Updated Samsung Music app to version 16.2.08.22
- Updated AdGuard Content Blocker to version 2.1.2
- Improved visibility of text and icons in status bar (without transparency)
- Disabled Samsung Battery Power Sharing service and wakelocks in the framework
- Disabled Samsung Dynamic Frequency manager service (DVFS) and wakelocks in the framework
- Disabled Samsung checks in TIMA (force com.android.server.TimaService.checkEvent to return null)
- Disabled Compare Signatures method in services.jar
- Added SysScope.apk (hacked) - always returning official status
- Fixed SGUSBMassStorageEnabler (again) ExtSdCard export ability ("/dev/block/vold/179:33")
- Addons: Updated microG Services Core to version 0.2.4-108
- Rebuilt the ART cache for the whole ROM (reodexed) because of changes in framework
- Optimized internal reodexing process and scripts
- Added my own MachineX ROM control app (Work in Progress)
- Removed init.d scripts; the system will now be able to create ART cache by its own, always!
- Updated Magisk to v16.0
MachineX ROM Mark 4.1 (31st of Oct 2017) - 3rd public release version
- Patched SecSettings SysScope Status to show status "official" always
- Added Blue Light Filter in Quick Settings (togglable, only work with machinex kernel ;-)
- Added UPSM by patching SecSettings and serives.jar (also 3 Emergency* system apps were added)
- Fixed Torchlight dialog in SecSettings (torchlight_settings xml)
- Patched SecSettings to accept any FlipFont (duh... again as in QA1)
- Added unlocked menu for LED indicator/extended LED notification settings by patching SecSettings
- Added (unlocked) quicklaunch button settings by patching SystemUI
- Added 110 true type fonts (installed to user /data)
- Added more Galaxy S8 fonts and Android O emoji (installed to /system)
- Fixed SystemUI notification width, added new icons and colors (incluging global white)
- Fixed SystemUI notification notification_panel_active_number_of_apps setting
- Fixed wrong ActionBar (3dot menu) layout in Phone (SecContacts_Phone_OSup app)
- Fixed wrong ActionBar (3dot menu) layout in ClockPackage_Osup app
- Added some S8 fonts to ClockPackage_Osup app
- Added new default caller icons in Phone (SecContacts_Phone_OSup app)
- Added black layer to MultiWindowTrayService
- Fixed layout bugs in AccuweatherPhone2015, updated WeatherDaemon2015
- Fixed layout bugs in TouchWiz launcher, updated TW texts and colors
- Fixed disappearing contact widgets in TouchWiz launcher
- Updated WebViewGoogle to the latest version (61.0.3163.98)
- Updated Google Play Store to the version 8.2.38.T-all [0] [FP] 169346653
- Updated Google Play services for instant apps (FAKE) to v.9999999 (no more "updating..." msg)
- Updated Samsung Music app to version 16.2.06.11
- Added the latest official Samsung Internet Browser (v. 6.0.01.10) with night mode
- Added Adguard Content Blocker(Version: 1.7.0) for Samsung Internet Browser
- Added and corrected black layer for Samsung Internet Browser
- Added SPenSdk3 3.0.224 (fixed drawing on pictures bug)
- Added SecLiveWallpaper app (checked with Muzei app)
- Added black/grey theme for SecGallery2013
- Updated Black_n_Blue layer theme with the latest overlays package
- Updated dark overlays for Sec MMS app (no more low contrast colors)
- Added Google Play Store black overlay
- Added widget (Google Search round corners)
- Added Machinex ROM control app (initial version)
- Updated some more dark and black global overlays for Android/Touchwiz frameworks
- Removed Google voice input app from the ROM
- Fixed SGUSBMassStorageEnabler (by mohammadag) ExtSdCard export ability ("/dev/block/vold/179:33")
- Added shutdown for Bluetooth Gatt service (temporary fix for BlueBorne, requires machinex kernel)
- Added some cleanup and integration in ROM-specific init.d scripts
- !!!IMPORANT Changed supersu (system-based) to magisk (systemless)
- !!!IMPORANT - Do not install TWRP's SuperSU after installation (no need)
==================================================================
MachineX ROM Mark 4 (09th Sep 2017) - 2nd public release version
- Fully Based on I9505XXUPQG1 official Samsung sources base with the necessary res and smali edits.
- Ditched microG in favor of full gapps (latest). The microG option will be in addons.
- Added "Google Play services for instant apps (fake)" (placeholder app needed by the latest Google services, freeze it if you wish ))
- Added latest WebViewGoogle, SBrowser, Samsung Music, SecLiveWallpapersPicker
- Added latest Total Commander
- Ditched SmartManager_OSUP and SmartManagerSDK_OSUP (will be in addons)
- Added VPN services by default
- Fixed glitches with grey on yellow, grey on black in system and mms overalys.
- Many other edits that I forgot.
==================================================================
MachineX ROM Mark 3 (14th Mar 2017) - First public release version
Framework Mods
Added Black leather default wallpaper
Updated System APKs
Google Play Store Version 7.6.08.N-all ClearBlack от Team Black Out
microG Services Core (GmsCore.apk; com.google.android.gms) Version: 0.2.4-64-gcbfb373 (minVersion 999999)
removed 00_link_boot_art init.d script
updated "disable services" init.d script
Pre-installed some Black Theme, Launcher icons, SuperSU and other settings
Previous updates
==================================================================
MachineX ROM Mark 3-p2 (12th Mar 2017)
Framework Mods
> Correctly built odex and boot.oat/boot.art, so no more "Android is upgrading..." message on the system boot completion.
Finally, correct reodex scripts were added
> 00_link_boot_art (init.d) as advised by Jasonrr
SecSettings mods:
> Added other custom settings to SecSettings (colored icons)
> Added "Thanks to" filed with credits in "About ROM" section
> completely removed knox info from About device
Additional System APKs
>LockScreenEffects by xperiacle
> SG USB Mass Storage Enabler app by Mohammad Abu-Garbeyyeh
> BitSyko Layer manager app by sykopompos, bitstra, CallMeAldy, @bgill55
> Merged /system/usr/keylayout/Generic.kl
> Deleted Google Search app from system apps
> added /system/app/GoogleCalendarSyncAdapter Version: 5.0.1-1602158
> added /system/app/GoogleContactsSyncAdapter Version: 4.2.2-573038
==================================================================
MachineX ROM Mark 2 N1 (3rd Mar 2017)
SecSettings mods:
> Added customsettings to SecSettings (thanks Robcore)
>
SystemUI mods
> Robcore: Random Ink effect colors (+Settings)
> Robcore: 5 Unlock effects
> Robcore: threw in Potato Gradient Code
> > Robcore: Some tweaks in Constants.smali; recent/FirstFrameAnimatorHelper.smali; wifi/WifiStatusReceiver.smali
> toggle_number=5 by defaulut in SystemUI /smali/com/android/systemui/qs/QSPanel.smali
> Clock position on the LockScreen (with settings)
> Lockscreen clock centered by default
> Center status bar clock by default
Additional System APKs
> Google Play Store (BlackOut team; com.android.vending) Version: 7.5.08.M-all [0] [PR] 146162341
>
Overlays
> Changed battery % text color (systemui overlay)
==================================================================
MachineX ROM Mark 2 (28th Feb 2017)
Framework Mods
> Patched services.jar (PackageManagerService) by amazing DexPatcher/HayStack by Lanchon(https://github.com/Lanchon/)
to enable signature spoofing globally
SecSettings mods:
> Enable the global signature spoofing by enable/disable switch to the application section in developer settings (HayStack by Lanchon).
> Enable "Developer settings" menu item by default (GridSettings.smali)
> Added item My Settings -> Custom settings
- System configuration:
* Delay of the volume bar display.
* Flashlight (incl. Flashlight with off. Volume button to display the settings work time).
- Settings of the status bar:
* Displays the speed of the Internet (Traffic).
* Displays % of battery charge.
MicroG and system APKs
> microG Services Core (GmsCore.apk; com.google.android.gms) Version: 0.2.4-64-gcbfb373
> microG Services Framework Proxy (GsfProxy.apk; com.google.android.gsf) Version: v0.1.0
> Mozilla UnifiedNlp Backend (MozillaUnifiedNlpBackend.apk; org.microg.nlp.backend.ichnaea) Version: 1.3.2
> NominatimGeocoderBackend (NominatimGeocoderBackend.apk; org.microg.nlp.backend.nominatim) Version: 1.1.1
> Google Play Store (official Phonesky.apk; com.android.vending) Version: 7.5.08.M-all [0] [PR] 146162341
> GoogleContactsSyncAdapter.apk (com.google.android.syncadapters.contacts) Version: 4.2.2-573038
> GoogleCalendarSyncAdapter.apk (Package: com.google.android.syncadapters.calendar ) Version: 5.0.1-1602158
Additional System APKs
> Signature Spoofing Checker (lanchon.sigspoof.checker) Version: 1.0
> OG YouTube, No Ads (com.google.android.youtube) Version: 11.16.99X
SystemUI mods:
> Charging Effects on Lock Screen (finalized) with /smali/com/android/keyguard/sec/KeyguardFestivalEffect*.smali festivaleffect/
> Added code for delay of the volume bar display.
> Added Black MachineX Keygard Wallpaper by default
binary files patches:
> patched libsurfaceflinger.so (No more logcat spam W/SurfaceFlinger(__): Fail to Open /sys/devices/platform/gpusysfs/fps)
==================================================================
MachineX ROM Mark 1 (22nd Feb 2017)
Framework Mods
> 5-ways reboot plus screenshot, torch and screen recording to the power menu
> TODO: Black backgrounds (https://goo.gl/3Fn4kI)
> No screen on/off when USB connector plugged in
> Back button to kill (...to finalize)
> Disable the Safe volume dialog box when connecting headphones
> Disable scrolling cache
> Autobrightness adjustment speed mod (delay cut by 50% in services.jar and framework.jar)
> Color Fade Memory Leak 5.0.x
> The color of the progress bar and slider in the volume during a call, and the color slider in the Media (framework.jar)
> 0.5x transitions of system animations by default
SystemUI mods:
> Unlocked additional items in the volume panel
> No sound when pressing "Vol+" or "Vol-" buttons (TW_Volume_control_.ogg)
> System Recents List Background transparent
> Transparent status bar at swipe
> Zero-width notification_side_padding
> Background bottom button bar (with a little more transparency)
> Hidden Quick Launch Button enabled
> Removed recents_google_button_kk from layout
> Full data on the lock screen and Quick Settings Panel (RUS only)
> Charging Effects on Lock Screen (to finalize )
SecSettings mods:
> Remove the dialogue with the Bluetooth turned on.
> Enable hidden Quick Launch Button Setting for SystemUI
SecSettingsProvider mods:
> Enable com.sec.android.theme.Black_color by default
SamsungCamera2 mods:
> Change settings (VideoBitrate, AudioBitrate, AudioSamplingRate) of mediaprofiles when recording video with resolutions of 3840*2160, 2560*1440, 1920*1080 (60fps), 1920*1080
TouchWizHome Mods
> 5x6 Apps Grid
Google apps mods
> Youtube and Play Store dark settings (TODO https://goo.gl/JpjdFn)
Other mods
> custom SGUSBMassStorageEnabler.apk with support for our device
MEDIA mods
> S7 Edge Nougat Beta Sounds
> MachineX boot animation
> Samsung One font by default system-wide
>
OVERLAYS BLACK THEMES
Packages modded:
android.v.overlay.apk (Volume panel)
com.android.contacts.overlay.apk
com.android.mms.overlay.apk
com.android.packageinstaller.overlay.apk
com.android.settings.b.overlay.apk
com.android.settings.overlay.apk
com.android.systemui.overlay.apk
com.android.systemui.v.overlay.apk
com.samsung.android.clipboarduiservice.overlay.apk
com.samsung.android.sm.overlay.apk
com.sec.android.app.clockpackage.overlay.apk
com.sec.android.app.music.overlay.apk
com.sec.android.app.myfiles.overlay.apk
com.sec.android.app.popupcalculator.overlay.apk
com.sec.android.app.sbrowser.overlay.apk
com.sec.android.inputmethod.overlay.apk (Keyboard)
SYSTEM APPS Updates
> Google Play services Version : 10.2.98 (238-146496160)
> Google Backup Transport Version : 5.0.1-1602158
> Google Calendar Sync Version : 5.0.1-1602158
> Google Contacts Sync Version : 5.0.1-1602158
> Google Account Manager Version : 5.1.1-2168912
> Google One Time Init Version : 5.0.1-1602158
> Google Partner Setup Version : 5.0.2-1900396
> Google Services Framework Version : 5.0.1-1602158
> Google Play Store Version : 7.5.08.M-all [0] [PR] 146162341
> Google App Version : 6.12.25.21.arm
> Latest offline voice recognition packages (/system/usr/srec/)
> YouTube (NO ADS!!!) Version : 12.05.53
> Android System WebView Version : 56.0.2924.87
> AccuweatherPhone2015 Version : 150626.603922
> Samsung keyboard Version : 4.0
> Samsung Music Version : 16.1.91-16
> SBrowser Version : 4.0.10-53
> Weather Daemon 2015 Version : 150705.624993
>
>
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Downloads
Download here:
machinex-rom-I9505XXUHQK1-M4.3-odex.zip
It is recommended that you also install the latest BL and modem:
I9505XXUHQK1_MODEM_COMBINED.tar
I9505XXUHQK1_BOOTLOADER.tar
Stock kernel:
I9505XXUHQK1_Stock_KERNEL.zip
ADD-ONS
https://forum.xda-developers.com/devdb/project/dl/?id=27161
Click to expand...
Click to collapse
FAQ/TIPS
- If you cleared Dalvik-cache (ART) cache and system complains about low storage space, just reboot again.
- If you are unable to switch on WiFi, please check "Fix WiFi Problem" in Machinex settings
- If you are tired of Black UI, Uninstall overlays of the black theme in Layer Manager App, reboot. Choose "Light" TW
- The "Development settings" icon is in the center of the Desktop. Just click it. Signature - spoofing is at the bottom.
- microG GmsCore - lightweight free software clone of Google Play Services (About)
- This ROM comes with Native Signature spoofing. You can switch it ON/OFF in developer settings
- Something to read about Signature Spoofing (LINK)
- Something more to read about microG: (LINK)
- If you want to try this on S4 VE (i9515), please use these files:
I9515XXU1BQD2 Bootloader
I9515XXU1BQD2 Modem
I9515XXU1BQD2 Stock kernel
- If you decide to switch to stock kernel, don't forget to flash machinex kernel UNINSTALLER-JAN12: https://www.androidfilehost.com/?fid=385035244224412313
- T.B.D.
Click to expand...
Click to collapse
THANKS
And special thanks to:
- Samsung Electronics for TW 5.0.1 firmware and kernel sources
Thanks to all wonderful people in XDA and 4pda.ru communities!
- Robcore for his wonderful kernel, support, and great enthusiasm in every little thing
- tdunham for THE GALAXY S5 UNIFIED MODS THREAD, and many others
- sagitt67 from 4pda.ru for his smali and resources editing guides
- student05 from 4pda.ru for TW black theme (reworked)
- MaR-V-iN for his great microG GmsCore - lightweight free software clone of Google Play Services
- mariozawa for Potato Gradient Code and Clock code
- Lanchon for his amazing DexPatcher/HayStack (https://github.com/Lanchon/) to patch framework
- AlIraqi for learning how to make black overlay themes from him
- xperiacle for LockScreenEffects app
- Mohammad Abu-Garbeyyeh for his SG USB Mass Storage Enabler app
- sykopompos, bitstra, CallMeAldy, @bgill55 for BitSyko Layer manager app.
- slim80 for aroma script for multi-CSC
- HITMAN-CREED and Albe95 for inspiration to create S6 like ROM and for their S7 icons.
- All the guys in our group: Corduroysack, RolloX, Mbare Florian, Marcos and Chris
for testing the initial ROM before release
- JasonRR for traveling through different dex2oat keys together with me.
If I forgot somebody, please PM me, and I will add credits
Click to expand...
Click to collapse
XDA:DevDB Information
MachineX ROM, ROM for the Samsung Galaxy S4
Contributors
Andycar, Robcore
Source Code: https://github.com/Andycar/MachineX_ROM
ROM OS Version: 5.0.x Lollipop
ROM Kernel: Linux 3.4.x
ROM Firmware Required: Check your bootloader and modem version. I9505XXUPQG1 is recommended
Based On: Samsung I9505XXUPQG1
Version Information
Status: Beta
Current Beta Version: 4.3
Beta Release Date: 2018-02-28
Created 2017-03-14
Last Updated 2018-02-28
Patches and fixes
MachineX add-on Package by Andycar
based on JASONRR's work - thanks!
CONTENTS:
Accessibility, adblock, AllShare, Bootanimations, ChromeCast, DriveMode, Email, GearFitManager, GearManager, MicroG, PowerSaving, SamStore, Scloud, SmartManager, SNote, SVoice, VideoEditor, VoLTE, VPN, Weatherwidget, YouTube and many others.
(NOTE: Many apps untested in addons package, if you found app that is not working -please report!)
Personally I use the package to remove GAPPS and to replace them with microG.
LINK FOR ADDONS:
https://forum.xda-developers.com/devdb/project/dl/?id=28758
Previous fixes and patches:
MachineX-ROM-patch01.zip (21st of March 2017)
Overlays fixed
3dot menu (Thanks to AlIraqi - prevent Settings FC on context many touch button)
com.android.mms.overlay.apk (Fixed colors and context menus)
SystemUI mods and fixes
Fixed recent menu bugs some users were having
Added dialer and camera shortcuts to lock screen (S8 Dream UX style)
Themes
Added S8 Dream UX style icon pack
Added Clock 2017 .ttf font for Lock Screen and Weather widget
It's recommended to flash the latest machinex kernel from here:
https://forum.xda-developers.com/showthread.php?t=3455219
KNOWN BUGS:
Pressing menu button in Settings causes them to Force Close sometimes. (Fixed in MachineX-ROM-patch01...
Selection of "Show Internet speed in the status bar" is broken.
...
SOME MORE TIPS:
If you cleared dalvik-cache (ART) cache and system complains about low storage space, just reboot again.
If you prefer White/Light theme, you can uninstall black theme overlays and reboot.
The black theme can be re-enabled in the Layer Manager app.
Also, touchwiz themes may be applied by clicking on the desktop, and selecting "themes"
ADDONS:
S8 Dream UX icons pack (Apply in Touchwiz desktop settings->Themes)
Thanks to @jjjhitel for icons and @binh24 for GraceUX.apk initial theme
Download
This Amoled Theme is amazing for battery, I've been testing it and it feels amazing, after flashing it boots within 1 minute. Finnally no more drain from google services!
It sounds amazing. Time to tw again after more than two years?
Mmmmmm ???
Enviado desde mi GT-I9505 mediante Tapatalk
Indha Lezzio said:
It sounds amazing. Time to tw again after more than two years?
Mmmmmm
Enviado desde mi GT-I9505 mediante Tapatalk
Click to expand...
Click to collapse
Who knows, maybe you should try it
I know I've been myself switching between AOSP and TW
At lest this TW ROM is smth different, i hope!
Brilliant work Andy. Perfectly matched for MachineX Kernel
Ty for another rom
Where is download link? I dont see it under download
peppect91 said:
Ty for another rom
Where is download link? I dont see it under download
Click to expand...
Click to collapse
Download link is back. Thanks!
Отправлено с моего SM-G930F через Tapatalk
Hi Is 3g video calls works on this ROM?
Andycar said:
Download link is back. Thanks!
Отправлено с моего SM-G930F через Tapatalk
Click to expand...
Click to collapse
Only my dowload is slow? 70kb/s max
masss1 said:
Hi Is 3g video calls works on this ROM?
Click to expand...
Click to collapse
Haven't tried it myself. Let me try now [emoji1]
Отправлено с моего SM-G930F через Tapatalk
Download was very fast 4-5 MB/sec.
Flashed the ROM dirty over Imperium 17, wiped dalvik and cache, did not wipe data. No problems or errors.
PK2 bootloader and modem, WiFi is working.
Just can't find Development settings, to turn signature spoofing on.
Instructions say: Open «Developement settings» - the central icon on desktop (cog wheel). Don't see any of that, therefore Play store not working.
ROM is very responsive, smooth, like it because of the dark enviroment. So how can I turn the spoofing ON?
Thx for work.
But why u use outdated Layers when u can use substratum or ported samsung theme engine?
peppect91 said:
Only my dowload is slow? 70kb/s max
Click to expand...
Click to collapse
Other people downloaded without complaints.
You must have been on the moment, when I reuploaded the ROM...
Отправлено с моего SM-G930F через Tapatalk
yavoni said:
Download was very fast 4-5 MB/sec.
Flashed the ROM dirty over Imperium 17, wiped dalvik and cache, did not wipe data. No problems or errors.
PK2 bootloader and modem, WiFi is working.
Just can't find Development settings, to turn signature spoofing on.
Instructions say: Open «Developement settings» - the central icon on desktop (cog wheel). Don't see any of that, therefore Play store not working.
ROM is very responsive, smooth, like it because of the dark enviroment. So how can I turn the spoofing ON?
Click to expand...
Click to collapse
OK. Suprised to know it works with dirty flashing.
Anyway, you can enable developer options in Settings- About device- tap 7 times on the ROM version...
After that, open developer settings and scroll to the bottom. Enable signature spoofing.
Отправлено с моего SM-G930F через Tapatalk
shoxieJESUS said:
Thx for work.
But why u use outdated Layers when u can use substratum or ported samsung theme engine?
Click to expand...
Click to collapse
Yeah, it's kind of outdated technology natively introduced into Android 5.0.1 by Sony.
It may be not as flexible as backported Sammy engines.
But for me it was interesting to discover and use it on Samsung Stock 5.0.1 ROM. Hey, it still works!
Also, as my OP states, I've no intention to port MM or other frameworks as of now. Other respected developers have done that.
The goal of this ROM was a Demonstration of several unusual functions in one stock-based custom ROM.
Thanks for your comment!
Отправлено с моего SM-G930F через Tapatalk
hi Andycar , can you ad some screenshot, the screenshots in first post doesn't working.
ziky abdo said:
hi Andycar , can you ad some screenshot, the screenshots in first post doesn't working.
Click to expand...
Click to collapse
Hi!
I see them in tapatalk. it's strange with xda site - on my PC they also don't work.
For now, could you please try just open screen shots from the 2nd tab?
Thanks.
Отправлено с моего SM-G930F через Tapatalk
Code:
** Your warranty is now void.
**
** We are not responsible for bricked devices, dead SD cards,
** thermonuclear war, or you getting fired because the alarm app failed. Please
** do some research if you have any concerns about features included in this MOD
** before flashing it! You are choosing to make these modifications, and if
** you point the finger at me for messing up your device, I will laugh at you.
**
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
WARNING : This ROM status for XZ Premium is WIP (WORK-IN-Progress) so it's not stable or ready for daily use yet
If you plan on testing this please backup all your important data
Report bugs only when fashing the ROM after Firmware flash
Features
- Odexed
- Fully Customizable installation
- Highly debloated (increased free RAM & storage space)
- Disabled Logging & tracing stuff
- Stable, stock-like no experimental system mods
- Multi device support
- Build.prop Tweaks from XZ2 and various optimizations
- Xperia XZ2™ Audio Processing
- Xperia XZ2™ Display Calibration
- Night Mode
- Ambient Display & Lift to Check
- Xperia™ Home 11.3.A.0.18 / Pixel 2 Launcher v3.5
- iOS 11 Keyboard sounds
- (Optional) iOS 11 Emoji
- Android Messages by Google©
- (Optional) Phone Dialer by Google©
- (Optional) Contacts apps by Google©
- (Optional) Pixel 2 Live Wallpapers 2017
- (Optional User app) Gboard - the Google Keyboard
- (Optional User app) Kiwi CAF Browser - Fast & Quiet
- (Optional User app) Brevent
Xperia™ XZ2 Addons
- Xperia XZ2 bootanimation
- Xperia XZ2 System Sounds
- Xperia XZ2 Overlay
- Xperia XZ2 Themes
- Xperia XZ2 Live Wallpaper
- Xperia XZ2 Clock Widget 2018
- (Optional) Xperia XZ2 Dialer app
- (Optional) Xperia XZ2 Contacts app
Google Pixel 2 Addons
- Pixel 2 color accents overlay
- Pixel 2 Android P fonts
- Enabled Google Lens in Google Photos (not in the assistant)
- Unlimited Storage for Google Photos Cloud
- Enabled Pixel-exclusive features
Kernel
All included Kernels are stock rootable kernels with :
Code:
- RIC disabled
- force_encrypt disabled
- added DRM patch support
- Bypass SafetyNet
Xperia X Kernel 34.4.A.2.85
Xperia X COMPACT KERNEL 34.4.A.2.85
Xperia X Performance Kernel 41.3.A.2.149
Xperia XZ Kernel 41.3.A.2.149
Xperia XZs Kernel 41.3.A.2.149
Xperia XZ Premium Kernel 47.1.A.12.205
Xperia XZ1/XZ1 Compact Kernel 47.1.A.12.205
Click to expand...
Click to collapse
Insctruction
Before proceed backup all you important data like pictures, files to another device.. !
Make sure you follow all steps carefully with caution .. !
You need to be on oreo stock firmware if you are not unlocked or don't have TWRP follow this guide.
Code:
1- Flash your Firmware [B][COLOR="Red"](VERY IMPORTANT)[/COLOR][/B]
2- Flash TWRP, We need a recovery with [I]AROMA[/I] support, [B][URL="https://drive.google.com/open?id=1Y9OCwwpeqlokLsCgxwmrGRgC7aeJcE7r"]get it here[/URL][/B]
[U]Method 1[/U] : It's a flash-able zip via recovery, after you finish reboot to TWRP again
[U]Method 2[/U] : You can also extract the twrp.img and flash it using fastboot
3- Enter TWRP and Flash ROM zip
4- Reboot to System
IMPORTANT Make sure to make the new phone & messages app as default from Settings> Default app settings
Downloads
#second Post
Screenshots
Head to post attachements
Credits
Ambient display by @Rizal Lovins
Pixel Launcher by @paphonb, @amirzaidi
Live Pixel Wallpapers @Pranav Pandey
Oneplus 6 Wallpapers @hampus Olsson
iOS emoji @Jplwolters
iOS Keyboard Sounds @iNoahTheAwesome
@YasuHamed for Xperia X Kernel 34.4.A.2.85
@levone1 for X Compact Kernel 34.4.A.2.85
@shoey63 XZ Premium Kernel 47.1.A.12.205
@3mozz XZs Kernel 41.3.A.2.149
@janjan XZ1/XZ1 Compact Kernel 47.1.A.12.205
@sToRm// @serjar @tobias.waldvogel for DRM and Kernel Root Solutions
UNOFFICIAL TWRP by @modpunk
Created 2017-12-25
Last Updated 2018-07-06
Downloads
Full ROM version - Based on debloated .235 firmware for XZP
https://mega.nz/#!rRZkTaZC!hH6Rhfb4h0zBr3to1xDU04fk_N01TabIxYzQzasU7FU
ROM Patch - Smaller size, Apply after flashing ftf
v5.5
https://mega.nz/#!aRxxjITC!Hqfrkuzq17wNWCzP32NHNMPFqnG5-LHrbBLcBoeEadI
v6
https://mega.nz/#!fAZAkYbJ!OrFuzdR_aJF-zIfZ_DpUPIAcE4gsCNiFb65CyuD6fDo
Changelog
v6.0
- Updated Google Play Services (to remove annoying update notification at boot)
- Updated Music app
- Updated Album app
v5.5
- Added Ruthless (Pixel 2) Launcher by @shubby
- Improved apps debloat list (new entries added)
- Fixed black screen after device setup (Need testing)
- Bug fixes
v5.3
- Google Dialer App update
- Fixed Themes engine crash
- Revised build.prop tweaks
- Important Bug fixes
v5.2
- SuperSU Removed
- Bug fixes
v5.1 | 11.07.18
- Added Magisk 16.6
- Bug fixes
v5.0 | 09.07.18
- Add missing overlays from XZ2
- Set Google Keyboard as default system keyboard
- Fixed SafetyNet break with Level 2 Debloat
- Cleaning code improvements
- Other AROMA script bug fixes and improvements
- Various bug fixes
v4.4 | 08.07.18
- Added two levels of debloat
- Kernel Update XZ1/XZ1C/XZP 47.1.A.12.235
- Installation fixes for XZP/XZ1
- Fixed user apps not being installed
- Various bug fixes
v4.3 | 06.07.18
- Added Ambient display
- Added Root options (Magisk/SuperSU)
- Added DRMfix for all supported devices
- Optional User App 3D Creator
- Added detailed description during installation
- Fixed user apps not being installed for some devices
- Improved cleaning code
- Other AROMA script bug fixes and improvements
v4.2 | 04.07.18
- Optional Xperia™ XZ2 Audio Processing libs
- Optional Xperia™ XZ2 Display Calibration libs
- Revised build.prop tweaks
v4.1 | 04.07.18
- Added Xperia X Kernel 34.4.A.2.85
- Revised build.prop tweaks
- Optional iOS 11 Emoji
v4.0 | 03.07.18
- Support for XP/XC/XZ/XZs/XZP/XZ1/XZ1C
- Fully Customizable installation
- Added Xperia™ XZ2 Audio Processing
- Added Xperia™ XZ2 Display Calibration
- Optional XZ2 Dialer/Contacts apps
- Optional Pixel Launcher
- Optional Pixel Live Wallpaper
- OP6 Wallpapers included
- Updated Build.prop Tweaks
- Bug fixes
V3.3 | 30.06.18
- Updated fonts from Pixel 2 android P
- Updated Xperia™ Home 11.3.A.0.18
- Removed some android built in logging stuff (will improve battery + smoothness)
- Bug fixes
V3.2 | 27.06.18
- Improved bloat apps to removal list
- Updated Google Dialer
- Updated Google Contacts
- Updated Android Messages
- Xperia XZ2 System Sounds
- iOS 11 emoji + iOS keyboard sounds
V3.1 | 25.03.18
- Added Sony XZ2 Phone Dialer (replace Google Phone)
- Added bootanimation from XZ2
- Updated Latest Xperia Home™ 11.3.A.0.6
V3 | 18.01.18
- Added buildprop tweaks and enhancements (Enabled VolTE/VoWiFi, Net Speed, Camera etc..)
- Updated Xperia™ Loops 2.0.A.0.8.3
- Updated Xperia™ Home 11.2.A.0.6 beta
- Updated 3D Creator 1.0.A.2.16
V2.2 | 04.01.18
- Added Google Dialer (Replaces Sony Dialer)
- Updated Messages app to v2.8.038 rc
- Updated fonts from Pixel 2 Android 8.1
- Pixel 2 Overlay (color accents)
- Removed Sony Power Optimizer app
V2.1 | 01.01.18
- Minor script code improvements
V2.0 | 29.12.17
- Improved cleaning code
- Added latest Xperia™ Home 11.2.A.0.3 beta
- Added more apps to removal list from different regions
- Improved compability for .24 fw
- Bug fixes
V1.0 | 17.12.17
- Initial release
Click to expand...
Click to collapse
FAQ's
What are the removed apps ?
First of all it should be mentioned that it's not only about freeing up storage, but about hiding unwanted functionality, potentially increasing battery life, and freeing up some memory. Second, All these app are safe to remove and won't break phone functionality neither affect user experience.
Code:
[LIST]
[/LIST]### Google bloat ###
#Gmail app
Gmail2
com.google.android.gm
#Hangouts
Hangouts
com.google.android.talk
#Google Docs
EditorsDocs
com.google.android.apps.docs.editors.docs
#Google Sheets
EditorsSheets
Google Sheets
#Google Slides
EditorsSlides
com.google.android.apps.docs.editors.slides
#Google Play Music
Music2
com.google.android.music
### Sony bloat ###
#Stock Sony Messages
Conversations
Messages
#Stock Sony Dialer
Dialer
#Stock Sony Contacts
Contacts
#Sony Email app
SemcEmail
#Calculator
ExactCalculator
#SmartOptimizer
SmartOptimizer
# OTA Updates app
UpdateCenter-release
#MyXperia app
MyXperia-release
# Xperia News
newssuite
# Sony broadcast app
SomcPodcast
# Spotify
com.spotify.music
# Sony App Store
ru.sony.store.xperiashop
# Phone monitoring anad data sending stuff
device-monitor
GooglePrintRecommendationService
GoogleAnalyticsProxy
phonel-usage
phone-usage
HTMLViewer
playstationapp
RcaHandler
IddPermissionApplicationCertificate/
#AR Effect
com.sonymobile.androidapp.cameraaddon.areffect
#AVG Protection
com.s.antivirus
#Advanced Logging
com.sonymobile.advancedlogging
#Sony Video & TV SideView
videotvsideview
com.sony.tvsideview.phone
#Amazon Shopping
com.amazon.mShop.android.shopping
#Anonymous Usage Stats
IddAgent
com.sonyericsson.idd.agent
#Basic Sleep Mode Apps
BasicDreams
com.android.dreams.basic
#Bookmark Provider
BookmarkProvider
com.android.bookmarkprovider
#Calendar
CalendarGoogle
com.google.android.calendar
#Chrome
Chrome
com.android.chrome
#Creative effect
ArtFilterCamera-xxhdpi-release
com.sonyericsson.android.addoncamera.artfilter
#Google Docs
EditorsDocs
com.google.android.apps.docs.editors.docs
#Google Drive
Drive
com.google.android.apps.docs
#Duo
Duo
com.google.android.apps.tachyon
#Sony Email
SemcEmail-release
com.sonymobile.email
#Sony Exchange Services
Exchange-release
com.sonymobile.exchange
#Facebook
com.facebook.katana
#Facebook App Installer
com.facebook.system
#Facebook App Manager
com.facebook.appmanager
#Facebook Services
com.facebook.services
com.facebook*
#Gmail
Gmail2
com.google.android.gm
#Google Play Movies & TV
Videos
com.google.android.videos
#Google Play Music
Music2
com.google.android.music
#Google lyrics extension for Sony Music app
GoogleLyricsPlugin
com.sonymobile.music.googlelyricsplugin
#Intelligent Observer
IntelligentObserver
com.sonymobile.intelligent.observer
#Introduction to Xperia
somc-get-to-know-it-release
com.sonymobile.gettoknowit
#Japanese keyboard layout
ExternalKeyboardJP
com.sonymobile.android.externalkeyboardjp
#Lifelog
Lifelog-googlePlayLiveRelease-4.0.A.0.14-8388622
com.sonymobile.lifelog
#Xperia Lounge
com.sonyericsson.xhs
#Sony Movie Creator
SomcMovieCreatorRmm-release
com.sonymobile.moviecreator.rmm
#Sony News Suite
newssuite
com.sony.nfx.app.sfrc
#Google Photos
Photos
com.google.android.apps.photos
#Amazon Prime Video
com.amazon.avod.thirdpartyclient
#Sony Retail Demo
com.sonymobile.retaildemo
#Google Sheets
EditorsSheets
com.google.android.apps.docs.editors.sheets
#Sony Sketch
SomcSketch-live
com.sonymobile.sketch
#Sony Sound Photo
SoundPhotoCamera-xxhdpi-release
com.sonymobile.android.addoncamera.soundphoto
#Sony What's New
sonyentrance2-release
com.sonymobile.entrance
#Sony Wikipedia extension for Sony Music app
WikipediaPlugin
com.sonymobile.music.wikipediaplugin
#Xperia Intelligence engine
Xperia-IntelligenceEngine
SomcIndeviceIntelligence-release
com.sonymobile.indeviceintelligence
#Xperia Chinese keyboard
textinput-chn-xxhdpi-release
com.sonyericsson.textinput.chinese
#Xperia Japanese keyboard
SomcPOBox
com.sonymobile.pobox
#Xperia Lounge Pass
com.sonymobile.xperialounge.services
#Xperia Tips
legacy_tips1-release
com.sonymobile.getmore.client
#Xperia services
SomcXperiaServices
com.sonymobile.xperiaservices
#YouTube
YouTube
com.google.android.youtube
com.google.android.youtube
#YouTube plugin for Sony Music app
YouTubePlugin
com.sonymobile.music.youtubeplugin
#YouTube Karaoke plugin for Sony Music app
YouTubeKaraokePlugin
com.sonymobile.music.youtubekaraokeplugin
#Sony Chrome homepage customizations
ChromeCustomizations
com.android.partnerbrowsercustomizations.chromeHomepage
#Partner Bookmark Provider
PartnerBookmarksProvider
com.android.providers.partnerbookmarks
#Crash Monitor
CrashMonitor
com.sonyericsson.crashmonitor
#Anonymous Data
AnonymousData
com.sonymobile.anondata
#Crash Monitor system
com.sonymobile.crashmonitor.system
#Sony Demo App Checker
DemoAppChecker
com.sonymobile.demoappchecker
#Sony Wearable Camera Bridge
CameraWearableBridgeHandheldServer
com.sonymobile.cameracommon.wearablebridge
#Sony Intelligent Engine
Iengine
com.sonymobile.intelligent.iengine
#Swiftkey extras
com.touchtype
#Other
ActiveClipper
retaildemo
#Chinese Firmware bloat
com.baidu.map.location
tg360
tg360llq
tg360qlds
tg360zs
tgdc
tghsxsp
tglbqlds
tgshxw
tgusbhelp2rol
tgwifi
tgyyzx
I made a phone call. There was nothing on my screen
- Make sure to make the new phone app & messages app as default from Settings> Default app settings
TWRP freezed during ROM flashing
- Read the instructions from op you need to use TWRP with graphical flashing support you will find download link there
I am getting a bootloop
- If you can't boot your phone you're probably doing it wrong, follow op instructions exactly as listed above
- Wipe data (Factory Reset from TWRP: Wipe > Swipe to Factory Reset)
Extras
- LXT (Battery Life | Speed Tweaks)
- [Magisk][Module] Unified Hosts Adblocker
- [Magisk][Module] Youtube Vanced [Official]
Nice rom
Very smooth and fast
Got 210000 antutu v4.3
Stock 204000
Nicr
Nice to see a new rom for our lovely xzp thanks will flash once I get home.
thanks for this, I can get 4.2 to install, but doing this rom 4.3 I get errors. If I pick my own kernel to install(4.3) then I just get stuck at the Sony logo... But if I pick to install the kernel supplied I get operation failed at the end and says Install failed
Install failed:crying:
thank you for your efforts!
ready to flash...
------------------------
update:
installation failed
code:7.
beammer335d said:
thanks for this, I can get 4.2 to install, but doing this rom 4.3 I get errors. If I pick my own kernel to install(4.3) then I just get stuck at the Sony logo... But if I pick to install the kernel supplied I get operation failed at the end and says Install failed
Click to expand...
Click to collapse
yuki787817 said:
Install failed:crying:
Click to expand...
Click to collapse
SuzutsukiKaede said:
thank you for your efforts!
ready to flash...
------------------------
update:
installation failed
code:7.
Click to expand...
Click to collapse
To avoid problems make sure to say YES to kernel and Choose a root method, this AROMA installer is still not perfect and there are some things that will to be fixed in next updates .. if still no luck try download and try again I made some changes to the installation script
Edit : You can save logs and upload it here that would be useful too
@korom42 hows battery life? SOT? just wondering thanks
korom42 said:
To avoid problems make sure to say YES to kernel and Choose a root method, this AROMA installer is still not perfect and there are some things that will to be fixed in next updates .. if still no luck try download and try again I made some changes to the installation script
Click to expand...
Click to collapse
still not working.:crying:
FINALLY a ROM to try out thanks buddy :good:
Edit - @korom42 Am I okay to wipe everything before flashing or is this not including the system and kernel?
Does this work with xposed? Thats the Great question
korom42 said:
To avoid problems make sure to say YES to kernel and Choose a root method, this AROMA installer is still not perfect and there are some things that will to be fixed in next updates .. if still no luck try download and try again I made some changes to the installation script
Edit : You can save logs and upload it here that would be useful too
Click to expand...
Click to collapse
im getting the same error
raven213 said:
@korom42 hows battery life? SOT? just wondering thanks
Click to expand...
Click to collapse
Should provide a slight peformance boost and battery life improvement over stock
amakuramio said:
Does this work with xposed? Thats the Great question
Click to expand...
Click to collapse
Haven't tried, if xposed work on stock it should work on this
raven213 said:
im getting the same error
Click to expand...
Click to collapse
If someone is having error upload your installation logs so I see what's wrong because for me the installation is fine.
Edit : I found what is causing the problem for XZP/XZ1 and a fix is on the way thanks to every one who shared their logs
korom42 said:
Should provide a slight peformance boost and battery life improvement over stock
Haven't tried, if xposed work on stock it should work on this
If someone is having error upload your installation logs so I see what's wrong because for me the installation is fine.
Click to expand...
Click to collapse
give me a sec im testing out new rom you said you upload?
Xperia XZ premium problem
My problem. Stop at 80%, make all the steps but nothing will happen.
STOCK LIGHT ROM
by @korom42
Almost done...
Permissions Fix..
ApplyParsedPerms: Isetfilecon of/vendor/bin/secd
to ubject_r:secd_exec:s0 failed: Invalid argument
ApplyParsedPerms: removexattr of
/vendor/bin/secd to 0 failed: Operation not
supported on transport endpoint
set_metadata: some changes failed
Installing... 80%
set_metadata: some changes failed
---------- Post added at 08:57 PM ---------- Previous post was at 08:44 PM ----------
here you go
AROMA INSTALLER version 3.00
(c) 2013-2015 by amarullz.com
ROM Name : STOCK LIGHT ROM
ROM Version : 4.3
ROM Author : korom42
Device : Xperia Oreo
Start at : Sun May 10 20:47:47 1970
STOCK LIGHT ROM
by @korom42 @XDA
about to run program [/sbin/busybox] with 3 args
about to run program [/sbin/busybox] with 3 args
umount: can't umount /oem: Invalid argument
run_program: child exited with status 1
about to run program [/sbin/busybox] with 3 args
about to run program [/sbin/mount] with 3 args
about to run program [/sbin/mount] with 3 args
mount: mounting /dev/block/bootdevice/by-name/data on /data failed: No such file or directory
run_program: child exited with status 255
about to run program [/sbin/mount] with 3 args
about to run program [/sbin/sync] with 1 args
about to run program [/sbin/busybox] with 3 args
about to run program [/sbin/busybox] with 3 args
Almost done..
about to run program [/sbin/busybox] with 4 args
mv: can't rename '/system/bin/logd': No such file or directory
run_program: child exited with status 1
Permissions Fix ..
about to run program [/sbin/busybox] with 4 args
mv: can't rename '/vendor/bin/secd': No such file or directory
run_program: child exited with status 1
ApplyParsedPerms: lsetfilecon of /vendor/bin/secd to ubject_r:secd_exec:s0 failed: Invalid argument
ApplyParsedPerms: removexattr of /vendor/bin/secd to 0 failed: Operation not supported on transport endpoint
script aborted: set_metadata: some changes failed
set_metadata: some changes failed
Installer Error (Status 7)
End at : Sun May 10 20:47:55 1970
Click to expand...
Click to collapse
you ok with this or should i upload the file?
Don't flash 4 permission
Flash kernel and fix after reboot flash magisk manually and the permisdion from magisk
It works for me like this
karrouma said:
Don't flash 4 permission
Flash kernel and fix after reboot flash magisk manually and the permisdion from magisk
It works for me like this
Click to expand...
Click to collapse
I do not understand how to do it all can you please write how to install it?
Link update it should fix the installation issue for XZP