List of my tutorials (updated on 02/03/2017) - Sony Cross-Device Development Themes and Apps

I would like to list my tutorials at one place... that helps me and every one to find
Guide Tut basics
[Guide][SuperUserMOD] disable signature verification Oreo/Nougat
[Guide][SuperUserMOD] disable signature verification nougat/MM
[Guide][Lp-MM-N]Adv Rom control in to stock Settings
[Outdated][Guide] SuperuserMod for all 6.x Devices/Roms
[Guide][New Learners Basics] [LP/MM/+] Create settings preferences and subsettings
[Guide Dev][Smali DIY] How to Switch, Checkbox, Seekbar,ListPreferences Preferences
[Guide][tut] [LP/MM] Color Picker Preferences from Rom control
[Guide][tut] New Seekbar preferences for new mods
[Guide]Add seekbar preferences code to settings
[Tut][Mod] How to remove album as default from Camera and Photos/video widget
[Guide][tut] [LP/MM] Hide/Enable Layouts (small apps, Icons, Nav and more) no smali
Navigation Bar
[Guide][tut] [Enable/Disable] Navigation bar Tint ( depends on app material )
[Guide][tut][MM] Navigation bar resize ( height and width )
[Guide][tut]Navigation Bar Resize (resize only portrait/landscape)
[Guide][tut] Enable/Disable Navigation Bar Swipe to sleep/Lock
[Guide][tut][Updated 21/JAN/15] Show/Hide 3 Dot Menu (on nav bar)
Status Bar /Lock screen/ Qs panel
[Guide][TUT][MM] Dynamic StatusBar (lib based) [DSB] Official [All Devices MM]
[Guide][tut] [MM] Clock and Date mods (align,font and more)
[guide][tut] Clock and Date mods for 5.x + (font,color,alignment,format & more )
[Guide][tut] Weather on Lockscreen ( RR prop )
[Guide][tut][Updated 21/JAN/15] Show/Hide Brightness Slider on notification Quick settings
[Guide][tut][Updated 21/JAN/15] Show/Hide Album art
[Guide][MOD] Network Traffic 4.x to 5.x (turn on/off, color, Display unit and more)
[Guide][tut] HeadsUp timeOut settings
[Guide][tut] [MM] HeadsUp timeOut / enable / disable settings
[APP][No xposed / No root] HeadsUp Mods for sony devices
[Guide][tut] [LP/MM] Cyanogenmod Battery Styles (stock/circle dotted/percentage/cm)
Animations
[Guide][tut] AOKP System animations (Xperia devices ) 5.x +
[Guide][tut] Animations Speed (Transition/windows/duration) control
Gesture Mods
[Guide][tut][MM] Gesture Anywhere [all devices][only MM]
Framework mods
[Guide][tut] Volume keys move cursor control
[Guide][tut] [LP/MM/+] Color your Icons and Text from Settings (color mods)
[Guide][tut] Add logo and info at upgrading dialog box
[Guide/Tut]Adding 5 way reboot menu lollipop
Small mods- hide sim icons - volte icon- cluster space and power menu- mobile datadia
Settings
[Guide][tut][MM] Switches (wifi/Bluetooth) and customization settings Dashboard
[Guide][tut] Create Own Settings Activity to recall from external 3rd party apps
[Guide][tut]Add switches for dashboard items (wifi/bluetooth/mobile network)
[Guide][tut] SystemApp remover (from 2.x to 5.x and above )
[Guide][tut] Add changelog to your settings of your own rom
Xposed Modules
[Xposed]Hide album art for all xperia devices
I will try to add 2 tuts every week (depend on my free time)

Great work brother

Great work

osirisk0re said:
Great work
Click to expand...
Click to collapse
with my pleasure
this week
System app remover (all versions of android )
App sidebar

venkat kamesh said:
with my pleasure
this week
System app remover (all versions of android )
App sidebar
Click to expand...
Click to collapse
will send a private message

Can you maybe prepare a tutorial for adding items (superuser, cpu stats etc) in settings app in 5.1.1?

moly82 said:
Can you maybe prepare a tutorial for adding items (superuser, cpu stats etc) in settings app in 5.1.1?
Click to expand...
Click to collapse
Already available...
By @abo hani
Sent from my D6653 using Tapatalk

Thanks found it now I'll see if i can do that [emoji14]

Hi any chance for a tutorial for removing things from settings.apk? (xperia connectivity, print etc [emoji14] )

moly82 said:
Hi any chance for a tutorial for removing things from settings.apk? (xperia connectivity, print etc [emoji14] )
Click to expand...
Click to collapse
That's easy. Go abo haniguide. Then do the reverse
Sent from my D6653 using Tapatalk

Not so easy, when i tried i got recompiling errors....

moly82 said:
Not so easy, when i tried i got recompiling errors....
Click to expand...
Click to collapse
the same to me,the guide not complete.

In the end I accomplished just removing the unwanted dashboard entries in dashboard_categories.xml file
{
"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"
}
only thing i am not able to remove is xperia connectivity entry dunno why ;(

moly82 said:
Not so easy, when i tried i got recompiling errors....
Click to expand...
Click to collapse
carlito-lt26i said:
the same to me,the guide not complete.
Click to expand...
Click to collapse
see brothers there is nothing wrong with my tuts
almost all developers got added these options to their rom
how could they get it worked
try to read log brothers that will show what error it was

venkat kamesh
ok sorry brother.

link77kz said:
second working
1) perform Replace line 6
Settings\res\xml\status_bar_clock_style.xml
Code:
<com.android.settings.cyanogenmod.SystemSettingSwitchPreference android:title="@string/clock_use_second" android:key="clock_use_second" android:dependency="status_bar_show_clock" android:defaultValue="false" />
example
Code:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen android:title="@string/status_bar_clock_title"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
<SwitchPreference android:title="@string/status_bar_show_clock_title" android:key="status_bar_show_clock" android:defaultValue="true" />
<com.android.settings.cyanogenmod.SystemSettingSwitchPreference android:title="@string/clock_use_second" android:key="clock_use_second" android:dependency="status_bar_show_clock" android:defaultValue="false" />
<com.android.settings.rz.SeekBarPreference android:max="23" android:title="@string/clock_font_size_title" android:key="font_size_clock" android:dependency="status_bar_show_clock" />
<net.margaritov.preference.colorpicker.ColorPickerPreference android:title="@string/clock_color_title" android:key="clock_color" android:dependency="status_bar_show_clock" android:defaultValue="0xffffff" />
<ListPreference android:entries="@array/clock_font_style_entries" android:title="@string/clock_font_style_title" android:key="font_style" android:dependency="status_bar_show_clock" android:entryValues="@array/clock_font_style_values" />
<ListPreference android:entries="@array/clock_style_entries" android:title="@string/clock_title_enable" android:key="clock_style" android:dependency="status_bar_show_clock" android:entryValues="@array/clock_style_values" />
<ListPreference android:entries="@array/entries_status_bar_am_pm" android:title="@string/status_bar_am_pm_title" android:key="status_bar_am_pm" android:dependency="status_bar_show_clock" android:dialogTitle="@string/status_bar_am_pm_title" android:entryValues="@array/values_status_bar_am_pm" />
<ListPreference android:entries="@array/clock_date_display_entries" android:title="@string/clock_date_display" android:key="clock_date_display" android:summary="@string/clock_date_display_summary" android:dependency="status_bar_show_clock" android:entryValues="@array/clock_date_display_values" />
<ListPreference android:entries="@array/clock_date_position_entries" android:title="@string/clock_date_format" android:key="clock_date_position" android:dependency="status_bar_show_clock" android:entryValues="@array/clock_date_position_values" />
<ListPreference android:entries="@array/clock_date_style_entries" android:title="@string/clock_date_style" android:key="clock_date_style" android:dependency="status_bar_show_clock" android:entryValues="@array/clock_date_style_values" />
<ListPreference android:entries="@array/clock_date_format_entries_values" android:title="@string/clock_date_format" android:key="clock_date_format" android:dependency="status_bar_show_clock" android:entryValues="@array/clock_date_format_entries_values" />
</PreferenceScreen>
add
Settings\smali\com\android\settings
download https://drive.google.com/file/d/0B-a9BrARdwvvOEhMVFhDUy1mNXM/view?usp=sharing
all ready!
Stok 5.1.1 Sony Xperia Z Ultra
Click to expand...
Click to collapse
its already working bro
this thread is just a part of List
please dont post fixes here

Please make a tut for put the weather on locksscreen
Please bro

raziel zarafan said:
Please make a tut for put the weather on locksscreen
Please bro
Click to expand...
Click to collapse
hmm i will try bro
next tut is about Navigationbar resize

venkat kamesh said:
hmm i will try bro
next tut is about Navigationbar resize
Click to expand...
Click to collapse
Thanks bro

Cools
hi request guid statusbar clock center, left, right for 5.1.1 lolipop

Related

[L7][ROM][4.4.2][AOSP] Vanir weeklies, Fast and smooth

Vanir AOSP
Fast and Smooth
{
"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"
}
Brought to you by: bart452
Join the community
G+
Features
-Vanir's latest source
-metric **** tons of speed tweaks
-reboot menu
-separate time/date click actions
-DeskClock enhancements
-optimized launcher
-custom vanir init.d & cron
-latest busybox build from source
-beats & other multimedia enhancements
-current AOKP navbar with 7 hotseats, navbar widgets, colors, navring with 5 hotseats, etc etc
-Vanir's performance settings: more BA than CM's, less bloaty than AOKPs. good balance with features that should be turned on always on rather than available to toggle.
-standard AOSP fixup features like reboot menu, wifi preference, performance, & auto connect, long-press back to kill, expanded unlinked volumes etc etc
-AOKP's quick settings hybridized with CM's and optimized for efficiency & smoothness. 25 tile choices fully organizable
tablet dual panel mode
-expanded desktop with triple tap to toggle
-lockscreen shortcuts
-lockscreen wallpaper & transparency slider
-ability to add/remove the camera widget (for tablets and phones where it's fixed)
-lockscreen rotation
-lockscreen carousel animation toggle
-maximize lockscreen widgets by default
-hide lockscreen keyhints by default
-contact list view (port from CM7)
-quiet hours
-optimized keyboard (removed research logging and bloat. was 23mb now is 2.4 mb)
-A-GPS toggle reenabled so you don't HAVE to waste battery life on it as AOSP apparently wanted to force it to be on all the time
-NFC polling mode
-bluetooth map profile for compatibility with cars etc
-theme chooser which includes an inverted theme (choices FTW)
-beats drivers merged with DOLBY/SRS mobile for 5.1 beats with ambient effect abilities (patched through an edited DSPmanager)
-boosted volume slightly
-the standard statusbar mods like clock position, and different types of batteries with percents
-LCD density changer with mods so stuff is still centered properly
-navigation bar and statusbar transparency (next build)
-volume rocker wake
-volume rocker music controls
-multitude of subtle UI changes and improvements
-multitude of integrated usability features (try the stock browser for example with restore tabs and other advanced options)
Install instructions:
Boot into Recovery
Wipe cache and dalvik cache (when first time flashing, do a full wipe)
Flash ROM
Flash Gapps
Reboot
Bugs:
Whats working?
-Everything
Source :
https://github.com/bart452
https://github.com/VanirAOSP
https://github.com/TeamHackLG
Credits:
Thanks to:
TeamHackLG
Codeaurora forum
Vanir Team
PecanCM
Tudorsirb
Pinkflozd
MBQ_
and everyone who's been working on Vanir AOSP
To do:
- Fix stock browser
For root acces : Supersu 1.80
Bugs on Vanir 4.4
- Android Run Time
27-11-13
Fixed almost everything
30-11-13
-Fixed pin lockscreen
-Fixed Soundrecorder app
-Switched to exp kernel
-optimized images in system
-other things
Front Camera Work ?
4870x2 said:
Front Camera Work ?
Click to expand...
Click to collapse
Yes
screenshots?
Sent from my LG-P700 using XDA Premium 4 mobile app
wer is the rom link??:silly:
arjunrambz said:
wer is the rom link??:silly:
Click to expand...
Click to collapse
It's already available in the first post
ubuntuh said:
screenshots?
Sent from my LG-P700 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
uploaded
Screenshots don't work.
got it
yaj got it will try tomorrow :angel::angel:
harkis123 said:
Screenshots don't work.
Click to expand...
Click to collapse
are in second post
http://www.mediafire.com/folder/cfoua5ss455cf/screenshots
could take some time to load
aosp?
is this rom aosp????
does HALO))) WORK in this rom??:silly::silly:
arjunrambz said:
is this rom aosp????
does HALO))) WORK in this rom??:silly::silly:
Click to expand...
Click to collapse
Yes, halo works, and it's based on aosp
bart452 said:
Yes, halo works, and it's based on aosp
Click to expand...
Click to collapse
did u include the apk?
Menu Key And Lock Screen Dont Work
4870x2 said:
Menu Key And Lock Screen Dont Work
Click to expand...
Click to collapse
works for me
do a reboot
arjunrambz said:
did u include the apk?
Click to expand...
Click to collapse
no, halo isn't a apk, it's coded into the frameworks
okk thanks for the reply
What about the p708, there is gonna be a fix for the camera?
Enviado desde mi LG-P708 usando Tapatalk 2
obaham said:
What about the p708, there is gonna be a fix for the camera?
Enviado desde mi LG-P708 usando Tapatalk 2
Click to expand...
Click to collapse
Maybe it works with pinkflodz kernel for p708
Sent from my OptimusL7 using xda app-developers app

[6.0.1][ROM][BACKUP] HTC Sense 7 RRemix Edition v1.0 for Android One 2nd Gen

{
"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"
}
HTC Sense 7 RRemix Edition Rom v1.0
Wileyfox Swift Build Android 6.0.1 Resurrection Remix v5.6.7 Rom Edition.
for Android One 2nd Gen Devices [Qualcomm variant]
​
HTC Apps & Other Features
Apps
HTC BoomSound Connect v7.20.705575
HTC Calendar v7.01.591006
HTC Clock v7.50.706207 (480dpi)
HTC File Manager v7.60.677939 (480dpi) (Android 6.0+)
HTC Mail v9.50.722647 (480dpi) (Android 6.0+)
HTC Sense Input v7.10.707218 (480dpi) (Android 6.0+)
HTC Music v7.10.558991
HTC Music Widget v7.0.516404
HTC FM Radio v7.0.549341
HTC Gallery v9.22.569629
HTC Power To Give v2.0.861924
HTC Video Player v7.0.493811
HTC Keyboard(Input) - v7.0.569035
HTC Location Services Setting v1.0.481224
HTC BlinkFeed v7.20.599309
HTC DeskClock v7.1.51052
HTC Weather v7.0.515321
HTC Weather Clock Widget v7.0.497815
HTC LocationPicker v2.4.474239
HTC Service Pack v1.02.548054
MyHTC v7.0.495204
RE v1.50.566225
Plugins
Facebook v7.00.505928
GooglePlus v6.0.847461
Instagram v6.0.847476
LinkedIn v6.0.847476
Twitter v7.00.555061
Media
HTC One Beatsaudio Boot Animation
HTC Alarm Sounds
HTC Notification Sounds
HTC Ringtones
HTC Stock Wallpapers (LockScreen/Launcher)
Google Apps 2016-04-11
Icon Edits
AdudioFX
Browser
Dialer
Screencast
Calculator
Snapdragon Camera
Kernel Adiutor
OmnSwitch
Resurrection Remix v5.6.7 Features
Code:
- Android 6.0.1- r24
- Add 5 RR 1 PB header logo
- Update taskmanager switch button
- Reverted clock second (Avoid to the lag issues)
- Add Heads-up button in the extended statusbar
- SystemUI: Fix Dual Tiles Qs Color Switch Text
- Revert Restart System UI on theme Change and NP color switch
- Heads Up Snooze
- Fix low battery warning level
- 2 more SB Custom logos
- HeadsUp: add timeout option
- Fix Applying Notification Colors To Light StatusBar Background
- Tune up dexopt dialog
- Settings: Make Most RR settings Searchable
- DevelopmentSettings: Synchronize USB connection data state
- Lockscreen : Fix bottom area visibility
- media: Add flags, channelMask, and UID to audio session callbacks
- audio: Don't play sound effects if stream is muted
- SystemUI: show visualizer in shade-locked view
- Bugfixes for systemUI
- Fix location tile not showing in the keyguard
- NetworkManagement: Add ability to restrict app WiFi background data access
- SystemUI: ensure volume record exists before showing notification
- MountService: ensure VolumeRecord with UUID exists before modifying
- Implement left swipe on lockscreen
- Framework changes for resetting data usage statistics
- LLS: Use window attachment callbacks
- SysUI: Add event logs for live lock screen interactions
- Fix battery stats helper derp
- Update ambientsdk version 1.5.2
- Add Weather Content Provider
- Add state member to WeatherLocation class
- Reset timer when a new weather service provider is selected
- Force Heads up in all applications
- Add system property to control config_enableAutoPowerModes
- SysUI/LLS: Slide panel out when collapse called
- QS:Re Add LS Tile and Addapt to AOSP panel
- translation imports
- For more info Track Github Activities
[B]Resurrection Remix v5.6.6 Features[/B]
- SystemUI: Restart System UI on theme Change and NP color switch
- LLS: Add LiveLockScreenController
- Update RR logos
- SystemUI : Fix Network Traffic Colors Not updating
- SystemUI: Fix headsup stuck after theme change and recreate statusbar
- [SQUASHED]Mass Revert of CM's Qs Drag Panel
- FWBase : Port & Improve CPU boosting Hooks && Interface
- Fix headsup blacklist and whitelist
- SystemUI :[Squashed] Fixed Leaks and Observers
- SystemUI: Reduce Load On ContentObservers
- SystemUI: Optimizations and cleanups
- ix metrics density comparisons
- GlobalActions: Set the initial status of airplane mode toggle
- SystemUI: Change demo mode time of day.
- Prompt permission dialog for status bar weather
- Should use scan flag, or it will not scan device.
- base: pipe all IME hints regardless of IME notification state/settings
- SystemUI: Fix Notification panel NPE
- Qs: Improve Themes Tile
- [ThemesTile] Sort themes
- Port ThemesTile to new CMTE api
- Compile app theme in background
- Cast Tile: only scan while in detail view
- SystemUI: more consistent visualizer logic
- Fling : Gallery icon support
- camera2 legacy: Allow HDR processing to take a while
- Cleanup Ls Weather Layout
- Revert "MediaScanner behavior on boot
- Add Resurrection ringtone v2
- Hack to remove black bar on custom lockscreen wallpaper
- Themes: Fail theme install if common resources fail
- SystemUI: stop hiding hotspot & color inversion tiles
- For more info Track Github Activities
- Translations updates
Installation
Install first Twrp Recovery
Download & Unzip Backup files
Replace "TWRP/BACKUPS/c06cec5/ [HTC-Sense7.... ] file in your phone "TWRP/BACKUPS/xxxxx" folder
Go to "Restore" in Twrp.
Select Sense 7 backup file and Swipe to Restore.
Done!
Screenshots [TR]
Download
Mod Edit: Link removed
Visit One-Team (Register & Download)
/forum.one-teams.com/
Custom Roms for Seed
Reserved
Thanks""
Reserved
Good Job Man , But I should edit thread title
STOLEN from Sense 7 Default CM13 theme and apps by xpirt!!!
sargat said:
STOLEN from Sense 7 Default CM13 theme and apps by xpirt!!!
Click to expand...
Click to collapse
Edit rom on xpirt. not make a apps. Xpirt not make a apps . Xpirt just port the apps. We use to app and add a rom . Rom is a Os !!!!!!!!!!!!!!!!
General Mobile 4G cihazımdan Tapatalk kullanılarak gönderildi
kaankulahli said:
Edit rom on xpirt. not make a apps. Xpirt not make a apps . Xpirt just port the apps. We use to app and add a rom . Rom is a Os !!!!!!!!!!!!!!!!
General Mobile 4G cihazımdan Tapatalk kullanılarak gönderildi
Click to expand...
Click to collapse
"Xpirt just port the apps" - seriously? It is huge amount of work!! And if you want to copy&past - ask a permission from the author
Ok, what about Sense 7 Default CM13 theme??
sargat said:
"Xpirt just port the apps" - seriously? It is huge amount of work!! And if you want to copy&past - ask a permission from the author
Ok, what about Sense 7 Default CM13 theme??
Click to expand...
Click to collapse
Apps and Theme from Ark Benefit A3 / Sense 7 Rom: Mod Edit: links to this site are not welcome on XDA
If you are uncomfortable then report this thread.
It does not matter from where you copied it! Please remove Sense 7 default cm13 theme from your "rom".
Thread closed until paid theme is removed from the rom. This is called warez folks. Distribution of paid work for free is not allowed on XDA.
Also, no credits given to anyone.
Darth
Senior Moderator

[STABLE]MM]AICP for Letv Le 1s/1s Eco[FP FIXED]

{
"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"
}
AICP
Android Ice Cold Project​
Note : You can add/register and remove FingerPrints also 720p and 1080p YouTube video plays without any bug. 60fps video doesn't play >> use MX Player or any other media player.
Please Don't ask for VoLTE.
Display and animations:
System animations
Toast icon and animation
Power menu animation
IME animation
LCD densidy changer
Status bar:
Clock style (position, date view, date format, color, font type and size, seconds)
Status bar icons control
Battery Icon style (percentage, icon type)
Brightness control
Show notification count
Quick pulldown on QS
Superuser indicator control
Headset icon
AICP logo
Traffic Indicators
Carrier Label
Battery bar
Statusbar weather temperature
Notification drawer:
Brightness slider
Time contextual header
Weather info settings
CAF Task Manager
Force expanded notifications
Disable immersive mode messages
Recents panel:
Clear all button settings
Show/hide search bar in recent menu
Recents in fullscreen
Show/hide clock and date in recent menu
Memory bar
Lock screen:
Show/hide music visualizer
Show/hide media cover art
Lock screen shortcuts
Mid-Screen shortcuts
Lock screen blur
DT2S on lockscreen
Lock Clock fonts
Lockscreen weather options
Buttons:
Enable/disable navigation bar buttons
Left-handed mode
Buttons and layout settings
Adjust navigation bar dimensions
CM button long press, double press features
SlimDim
Power menu settings
Press power button twice for camera
Misc:
Pie Control
Gesture Anywhere
App Circle Bar
Slim Recents
OmniSwitch
Scrolling cache settings
Disable FC notifications
DT2S on navigation bar
Launch music app when headset is connected
Enable/disable screenshot sound
Three fingers swipe for screenshot
System App remover
Take logcat, kmesg, dmesg on the go! (AicpExtras -> Log that 's'hit)
AICPStats
Quick Settings toggles:
QS Compass Tile
QS NFC Tile
QS Sync Tile
QS Volume Tile
QS Profiles Tile
QS USB tether Tile
QS Screen timeout Tile
QS Performance Tile
QS Lockscreen toggle Tile
QS Ambient Display Tile
QS Live Display Tile
QS Brightness Tile
QS ScreenOff Tile
QS Screenshot Tile
QS Expanded desktop Tile
QS Music Tile
QS Reboot Tile
QS LTE Tile
QS Nav bar Tile
QS SlimPie Tile
QS App circle bar Tile
QS App side bar Tile
AICP 11 : http://goo.gl/SHOYZf
SuperSU : http://goo.gl/Qx9VAD
~
Full Changelog link: http://goo.gl/mIgmYG
You can also view changelog at AicpExtras -> About -> Changelog on your phone
- You Tell
ROMs should contain everything you need to enjoy Marshmallow. You are not required to install any Add Ons, simply download the latest ROM, Google Apps, SuperSU, flash it, and go!
You are STRONGLY recommended to fully wipe your device before flashing, and if possible avoid restoring system apps and system data with Titanium Backup - these can cause stability issues that are very hard to debug. If you believe you know what you're doing - then fine, go ahead, but please don't complain if you experience strange behavior.
How to flash:
Install latest TWRP/CWM/Philz recovery on your device.
Make a backup of your current ROM.
Wipe system, data, cache and dalvik.
Flash ROM.zip Googleapps.zip and SuperSu.zip.
Reboot system and setup!
Gapps : 6.0 Arm64
SuperSu 2.78 Recommended.
Me (Zamasu)
DroidThug
WisniaPL
Bule
DeckerSU
Me (Zamasu)
AbhishekAN
SsCsPs
bbnjon
Kernel : https://github.com/WisniaPL/android_kernel_leeco_MT6795
Device : https://github.com/WisniaPL/x500-device-tree
Vendor : https://github.com/WisniaPL/x500-vendor-tree
ROM OS Version: 6.0 MarshMallow
ROM Kernel: Linux 3.10.104+
Based On: AOKP, CyanogenMod
Version Information
Status: Stable
Created 2017-03-27
Last Updated 2017-03-28
Can we have have DT2W support :laugh:
Thanks for the ROM
phone gets stuck in first boot at letv is booting up...starting apps...poweredbyaicp
Nice to see some development ?
rom link broken
Link is broken
Please fix the link of ROM it's broken
Links updated
Awesome rom buddy...just dt2w is not there
Sreeroop said:
Awesome rom buddy...just dt2w is not there
Click to expand...
Click to collapse
:silly:
reversegear said:
Can we have have DT2W support :laugh:
Thanks for the ROM
Click to expand...
Click to collapse
Lel, tried too much bt no luck for DT2W
nosidefcp said:
phone gets stuck in first boot at letv is booting up...starting apps...poweredbyaicp
Click to expand...
Click to collapse
Flash official MM stock rom, then flash AiCP
d33pak_007 said:
Nice to see some development ?
Click to expand...
Click to collapse
You'll see more
Bro can you give xposed link which is good for this rom
Zamasu said:
You'll see more
Click to expand...
Click to collapse
Hi zamasu where is more coming development
Lel plz zamasu sir answer where is new update for this rom
R u working on it or not
This rom so good and cool
But fast charge not work
And video problem
I think u know it
I'll not update this rom, anymore.
Zamasu said:
I'll not update this rom, anymore.
Click to expand...
Click to collapse
Lel ooooooooooooookkkkkkklkkk
sumitgp said:
Bro can you give xposed link which is good for this rom
Click to expand...
Click to collapse
Use same which you use on eui
Anyways : Install this apk https://forum.xda-developers.com/attachment.php?attachmentid=3383776&d=1435601440
and flash this : http://dl-xda.xposed.info/framework/sdk23/arm64/xposed-v87-sdk23-arm64.zip
Zamasu said:
Use same which you use on eui
Anyways : Install this apk https://forum.xda-developers.com/attachment.php?attachmentid=3383776&d=1435601440
and flash this : http://dl-xda.xposed.info/framework/sdk23/arm64/xposed-v87-sdk23-arm64.zip
Click to expand...
Click to collapse
U always nice and good bro
Thanks
sumitgp said:
U always nice and good bro
Thanks
Click to expand...
Click to collapse

RENOVATE ICE 1.2 | G950F & G955F | Android 7.0 | AQE5

{
"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"
}
Developers: mwilky & baadnewz​
Official Testers: SoLdieR9312, sswagonman, patensas​
G950FXXU1AQE5
Android 7.0
Knox set to 0x0 when booted
Semi deodexed until custom kernel support
Support for G950 and G955 variants
Customizable AROMA installer with option to debloat & remove knox
Choose from no root, magisk or supersu
Choose from lots of different CSC features
Optimized for improved battery/perfomance
Tweaks app to control your experience
Device status set to official
5 way reboot menu added
Added outdoor mode to settings
Added LED notifications to settings
Added extended animation values to settings
Added applock
Added screen recorder quicksettings tile
Removed OEM unlock toggle from settings to avoid accidentally re-locking device
Enabled SystemUI Tuner, activate by long press settings button in quicksettings panel
Alarm volume added to the volume control dialogue
Much more!
General
Useful links in regards to the rom
UI
Enable/disable heads up notifications
Enable/disable immersive mode
Enable/disable all rotations
Enable/disable loud volume warning
Enable/disable high brightness warning
Enable/disable fingerprint unlock after reboot
Enable/disable long press recents to kill app
Enable/disable long press back to kill app
Statusbar
Choose from left, center, right or no clock
Enabled/disable opening clock app when clicking on statusbar clock
Enable/disable battery icon in statusbar
Enable/disable multi user icon
Enable/disable double tap to sleep
Choose number of quicksetting rows/columns
Enable/disable brightness slider in quicksettings
Enable/disable quicksettings being usable when phone is locked
Enable/disable quick quicksettings
Enable/disable keyboard selection notification
Enable/disable battery bar & lots of customization
Enable/disable blur effect on pulldown
Apps
Enable/disable lockscreen rotation
Enable/disable lockscreen help text
Notification panel
Select color for header background
Select color for header text
Select color for header icons
Select color for quicksetting background
Select color for quicksetting text
Select color for quicksetting "enabled" tiles
Select color for quicksetting "disabled" tiles
Select color for quicksetting divider
Select color for quicksetting brightness slider
Select color for quicksetting drag handle background
Select color for quicksetting drag handle icon
Misc
Enable/disable waking device when connection usb
Force SafetyNet passable
RENOVATE ICE G95X 1.2 - 8th May​
​
​
added option to enable/disable notification pulldown blur
added option to disable/enable long press back to kill app
added extended animations for most european countries (let me know if ive missed any)
added option to color the following:
Header background
Header text
Header icons
Quicksetting background
Quicksetting enabled icons
Quicksetting disabled icons
Quicksetting divider
Quicksetting brightness slider
Quicksetting drag handle background
Quicksetting drag handle icons​
fixed safetynet for G955 users
fixed dex force close
Code:
Please do not take anything without asking us first. We will 99% allow you to use anything, just ask first though.
You cannot use any of our work which hasn't been released in an official ROM release unless given express permission.
We are not responsible for anything that happens to your device while using this ROM.
By using this ROM you agree with the above terms.
Thanks to @jesec for the kernel source and for the camera fix with custom kernels
XDA:DevDB Information
RENOVATE ICE 1.2 | G950F & G955F | Android 7.0 | AQE5, ROM for the Samsung Galaxy S8+
Contributors
mwilky, baadnewz, soldier9312
Source Code: https://github.com/mwilky/renovateKernel-G95X
ROM OS Version: 7.x Nougat
ROM Firmware Required: Latest Bootloader and Modem, TWRP Recovery
Version Information
Status: Stable
Current Stable Version: 1.2
Stable Release Date: 2017-05-08
Created 2017-04-29
Last Updated 2017-05-18
RENOVATE ICE
Previous changelogs:​
Reserved
Greeatttt
---------- Post added at 02:43 AM ---------- Previous post was at 02:41 AM ----------
There is no telegram group ?
Very good, great fan of your work on Renovate Edge. Even bought the app, good luck with this one
EDIT: Also I see you patched up the way to get the SVN links off your website, RIP lol.
We r still organising the group so will post link for telegram when we have it
Sent from my SM-G950F using Tapatalk
Right it's finally time to root!
Can this be used in the 955U?
wp4jot said:
Can this be used in the 955U?
Click to expand...
Click to collapse
Can you read the very first bullet point in the OP?
Sent from my Note 7, S7 Edge or S6
Good, please, take screenshots
YunusalievFarhod said:
Good, please, take screenshots
Click to expand...
Click to collapse
Very stock with tweaks
Sent from my SM-G950F using Tapatalk
Samsung Knox Settings are present in the app launcher but force close after tapping on it.
redplate said:
Samsung Knox Settings are present in the app launcher but force close after tapping on it.
Click to expand...
Click to collapse
Did u choose to not install knox in aroma?
Sent from my SM-G950F using Tapatalk
sswagonman said:
Did u choose to not install knox in aroma?
Click to expand...
Click to collapse
Knox isn't installed. I left the aroma option "knox support" unticked.
Can the renovate home app only be used by this rom?
Verstuurd vanaf mijn SM-G955F met Tapatalk
It's not possible to change the row number of the quicksettings to 5 as in Stock or another custom rom.
Is this option hidden somewhere?
Thanks
kevje1406 said:
Can the renovate home app only be used by this rom?
Verstuurd vanaf mijn SM-G955F met Tapatalk
Click to expand...
Click to collapse
It can
redplate said:
It's not possible to change the row number of the quicksettings to 5 as in Stock or another custom rom.
Is this option hidden somewhere?
Thanks
Click to expand...
Click to collapse
Not hidden, I've moved it and given your more options...
mwilky said:
Not hidden, I've moved it and given your more options...
Click to expand...
Click to collapse
Very nice. Thanks a lot. I like playing with your rom and using it
Does Samsung Pay work?
Edit: Nvm, that is one hell of an ugly ass rom....

Evolution X [Pie] for herolte/hero2lte

{
"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"
}
Evolution X 2.0 for Samsung Galaxy S7 / S7 edge [herolte/hero2lte]
Pixel UI, Android Q vibes, Customization and more. We are Evolution X!
Statusbar
- Clock Settings
- Clock Font's & Colors
- Battery Icon Customization
- EvoX Icon Toggle (39 Styles)
- Roaming Icon toggle
- VoLTE & 4G Icon Toggle
Navigation
- Pixel Animation Toggle
- Invert Layout
- One-Handed Mode
- Navigation Gestures
- Portrait/Landscape Hight/Width Configurations
- Pulse (Navbar Audio Visualization)
Quick Settings
- QS Rows & Columns Customization
- Tile Titles Toggle
- QS Panel Color's (RGB picker)
- QS Panel Opacity Selector
- Quick Pulldown (Right/Left)
- Bottom Brightness Slider Toggle
- QS Animations
- QS Styles (24 Including QDP4 Styles)
Lockscreen
- Status bar visibility toggle
- Clock Styles (14 Including Q Clock)
- Clock Font Sizes & Colors
- Date/Alarms/Zen Hider
Ambient Display
- Music Ticker & Visualization Options
- Ambient Display Gestures (Hand Wave, etc.)
Themes
- Wallpaper/Light/Dark switching
- Accent's (16 Including Q Accents)
Buttons and Gestures
- AOSP & Fingerprint Gestures
- Power Menu Customization
- Volume Key Cursor Control
- Volume Key Playback Control
- Volume Panel Placement (Right/Left)
Notifications
- Heads Up Notification & less Annoying Toggle
- Notification Timeout
- Snooze timer
- Stoplist & Blacklist for Heads up
- Smart Notification Sounds
- Kill App Button
- In-Call Vibrations
- Q Style Seek Bar
Miscellaneous
- Doze Settings & Profiles
- Time In State Monitor
- Sensor Block Per Package
- Default USB Config
- Wake On Plug
Known issues
You Tell Me
DON'T FLASH GAPPS, ALREADY INCLUDED
Reboot to recovery
Download the proper zip for the device
Wipe data/cache/system when coming from ROMs that are not AOSP based / another AOSP rom
Flash the latest build
Flash Magisk
Reboot to system
DOWNLOAD FOR S7/S7Edge
Liked my work? Please donate. Thanks!
Telegram channel (ExpressLuke)
Join my telegram channel for more
Android OS version: 9.0.0_r44
Security patch level: July 2019
Build author: https://forum.xda-developers.com/member.php?u=7166349
Source code: https://github.com/Evolution-X
Kernel Source code: https://github.com/resurrectionremix-hero/kernel_samsung_universal8890
ROM Developer: joeyhuab
​
XDA:DevDB Information
Evolution X, ROM for the Samsung Galaxy S7 / S7 edge
Contributors
joeyhuab,AnierinB,peaktogoo
Source Code: [url]https://github.com/Evolution-X[/URL]
ROM OS Version: 9.x Pie
ROM Kernel: Linux 4.x
ROM Firmware Required: Unlocked Bootloader, TWRP
Based On: AOSP
Is wifi stable?
Can't find screenshots...
Waterstrike said:
Is wifi stable?
Click to expand...
Click to collapse
Yes
few UI crashes, thats the only big problem for now
Smantanasiceapa said:
Can't find screenshots...
Click to expand...
Click to collapse
+1
Why i dont have mobile internet on bonbon service...its automatic choosen HT HR
Smantanasiceapa said:
Can't find screenshots...
Click to expand...
Click to collapse
Trankill said:
+1
Click to expand...
Click to collapse
You have to click on screenshot picture
or follow this link : https://imgur.com/a/6l0dMag
slutman said:
You have to click on screenshot picture
or follow this link : https://imgur.com/a/6l0dMag
Click to expand...
Click to collapse
I did, but it showed only the screenshot, which isnt't a hyperlink. Thanks for the link!
ROM is great. To bad Gapps are integrated...
Hi ! Just one (small) bug for now : volume panel in dark (black amoled) mode is bugged (see on screenshot)
Oh and when using a custom launcher (here is lawnchair) you can't get the dock in recent. Tryed the quickswitch magisk module and it won't works (seems to be an issue Witt pixel launcher)
Great work for a first build ! Impatient to see what's next !
Screenies shows volte but does it work?
coz aosp dosent have volte in exynos devices i wonder
Amar 721 said:
Screenies shows volte but does it work?
coz aosp dosent have volte in exynos devices i wonder
Click to expand...
Click to collapse
Unfortunately volte still doesn't work
Screeshots for the 2 bugs i've talked about earlier.
Does someone have a way, a tutorial, on how to get rid of Google services and install microG instead ?
Mint Julep said:
Screeshots for the 2 bugs i've talked about earlier.
Does someone have a way, a tutorial, on how to get rid of Google services and install microG instead ?
Click to expand...
Click to collapse
I found a way, there-s several degooglizing tuto on XDA
I have problem with camera.
When I make photo I have about 2 sec lag to moment when camera make a photo
bluemil said:
I have problem with camera.
When I make photo I have about 2 sec lag to moment when camera make a photo
Click to expand...
Click to collapse
Download footej cam
I had downloaded snap camera and samsung camera and on this both i had lag.
I think that is bug in camera
bluemil said:
I had downloaded snap camera and samsung camera and on this both i had lag.
I think that is bug in camera
Click to expand...
Click to collapse
Try open camera and enable Camera2 in the settings.
Mint Julep said:
Download footej cam
Click to expand...
Click to collapse
turbolukex5 said:
Try open camera and enable Camera2 in the settings.
Click to expand...
Click to collapse
Did You try this camera app and on this app camera work fine? Had no lag.?

Categories

Resources