[MOD][XPOSED][ICS/JB/KK] XHaloFloatingWindow v2.40 - Xposed Framework Modules

{
"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"
}
This is not the complete halo. This is only the popup window
How to Launch in Floating Mode?
The module includes these SystemUI mods for your convenience:
1) Long Press Notifications: Adds a "Open in Halo" option when long pressing a notification
2) Single Click Notifications: Open your notifications directly in halo mode by single clicking
3) StatusBar TaskBar: Pin Apps into the notification panel for "quick launching"
(They are made for AOSP ROMs, so I cannot guarantee it will work for manufacture ROMs or custom ROMs.)
​You can use apps that are created to launch apps in halo mode. Examples include Portal, Floatifications, Bubble Launcher, MultiWindowSidebar​
Can't get more than one window to open at the same time (side by side)?
Are you on Android 4.4.0 / Android 4.4.1 / Android 4.4.2 / Any OmniROM versions ?
You need this patch to fix the bug. The module will fail to work properly without it
(Why? Read the 4th Post under "ROMs with Issues")​​
Source code
This module is open-source
The sources can be found here
Developers, please help in the development by sending pull requests or creating an issue with tips, bug reports.
Translators, feel free to translate and send pull requests too.
(Please do not send compiled APKs with translations. Send strings.xml please (and tell me the language it is in))
For Developers
Launching Apps in Floating Mode
(In both Paranoid Android's Halo & in this module) Apps can be launched in floating mode using
Code:
intent.setFlag(0x00002000);
It is known as FLAG_FLOATING_WINDOW in Paranoid Android sources.
Note also that it is the same integer used in OmniROM's MultiWindow.
As of v2.28
You can launch apps directly snapped to the top/bottom/left/right of the screen with these codes
Code:
public final static int [COLOR="blue"]SIDE_LEFT[/COLOR] = [COLOR="SeaGreen"]1[/COLOR];
public final static int [COLOR="blue"]SIDE_TOP[/COLOR] =[COLOR="SeaGreen"]2[/COLOR];
public final static int [COLOR="blue"]SIDE_RIGHT[/COLOR] = [COLOR="SeaGreen"]3[/COLOR];
public final static int [COLOR="Blue"]SIDE_BOTTOM[/COLOR] = [COLOR="SeaGreen"]4[/COLOR];
intent.setFlag(0x00002000);
intent.putExtra(“com.zst.xposed.halo.floatingwindow.EXTRA_SNAP_SIDE", [COLOR="DarkRed"]*side*[/COLOR] );
where *side* is the integer of the respective side as specified above. It is derived from AeroSnap.java
Click to expand...
Click to collapse
Thanks (in order of importance)
rovo89 for Xposed Framework
Tungstwenty for Xposed codes samples
ParanoidAndroid Team for HALO codes
gflam for Movable and Resizable codes.
MohammadAG for Tinted StatusBar codes
XpLoDWilD for Multi-Window codes
Colt's Blog for this article
Microsoft for Aero Snap idea.
Samsung for Multi-Window idea.
XxnewflarexX my real-life friend for inspiration
All who posted in this thread and giving me ideas
(If I have missed out any body, feel free to contact me and I'll add you in)
XDA:DevDB Information
XHaloFloatingWindow, Xposed for the Android General
Contributors
zst123, zst123
Xposed Package Name:
Version Information
Status: Stable
Current Stable Version: v2.40
Stable Release Date: 2014-07-21
Created 2013-10-09
Last Updated 2014-07-23

Download from Xposed Module Repository
Backup Download from Google Drive
(updated later/slower) ​​Requirements
1) Have Xposed Framework Installed
2) Ability to read the 4th post (especially the "ROMs with Issues" section). <-- Seriously, I'm not joking
Setup Instructions
1) Download and Install XHaloFloatingWindow
3) Enable XHaloFloatingWindow in Xposed Installer
4) Restart device
5) If you have a ROM with Halo already bundled in, disable Halo
6) Test the module by going to "Testing Area" and open Settings.
Usage Instructions
You will need a "helper" app to launch apps in floating mode.
I recommend MultiWindowSidebar for a Samsung Multiwindow Experience
There are more ways to use this module:
• Floating Notifications/Floatifications Guide by -Cupper-
• Another Guide by Exedion
Can't get more than one window to open at the same time (side by side)?
Are you on Android 4.4.0 / Android 4.4.1 / Android 4.4.2 / Any OmniROM versions ?
You need this patch to fix the bug. The module will fail to work properly without it
(Why? Read the 4th Post under "ROMs with Issues")​​
=
Want Samsung-like MultiWindow?
Follow these settings:
• Enable Movable & Resizable
• Go to Moving Settings
• Disable Allow ActionBar To Move
• Go to Resizing Settings
• Enable Snap-in Windows
• Enable Split Bar
• Install MultiWindowSidebar
• Change Drag Launch Mode inside MultiWindowSidebar to XHaloFloatingWindow (Portrait)​Usage:
• Drag 2 apps from the MultiWindowSidebar to the top and bottom of the screen
• A Samsung-like Split Bar will appear.
• Enjoy!​
Click to expand...
Click to collapse

Latest Changelog:
2.40 Beta - 21 July 2014 - 1935 GMT+8
• Replace Internal APIs references with Reflection:
--> Completely replaced usage of internal API's with reflection!
--> Update misc project files to remove internal API references
--> Cleanup deprecated codes
• Delay retrieval of ActivityManager, WindowManager (may reduce SystemUI FCs)
• Migrate basic window management code to an IPC service
• Initialize Window Resizing Outline later into the system boot
• Fix FC when resizing windows that are started snapped
• Fix bug on Kitkat where Recent Apps screen stays open when using "open in halo"
• Made Statusbar Taskbar's priority from high to max
• Cleanup Snap-in Window code
• Don't allow module to be moved to the SD Card
• Tweak first-use text (not shown in the app yet)
• Update Chinese (China+Taiwan) Translation by Pocket Fan
Older Changelog:
v2.38 - 09 June 2014 - 0925 GMT+8
• Add new gravity chooser
• Add base code for First Use Screen (not ready yet)
• Change Main Preference to a sliding navigation
• Change ActionBar to dark + Replace action bar icons with white ones
• Made popup alpha and popup dim preference live update
• Code Refactoring:
--> Optimized Movable Window hooks
--> Fix mistake in blacklist and whitelist
--> Revert "Simplify hook for the Testing Area."
2.36 Beta - 06 June 2014 - 2230 GMT+8
• Fix Xposed 2.6 issues on ICS
• Fix IllegalArgumentException thrown by Tinted Titlebar
• Fix bug where keyboard sometimes remain open when closing a window with the titlebar
Code Refactoring:
--> Simplify hook for the Testing Area.
--> Rearrange main hook load codes
--> Major Optimization to original Halo codes (Should speed things up)
2.34 Beta - 29 May 2014 - 2150 GMT+8
• Fix Compatibility with Xposed 2.6
• Fix FC of apps list on Samsung devices
• Fix rounding off error for preferences using percentage
• Fix bug when multiple activities are open and the titlebar is hidden (by maximizing), the previous activity continues showing it.
• Fix possible NPE in ActionBarColorHook
• Fix MultiWindow popup buttons being always white
• Fix IllegalArgumentException log spam by Tinted TitleBar
• Fix MultiWindow outline not being shown above the nav bar using Immerse Me
• Add option to use old icons for titlebar
• Add Option to treat apps as single windows. (pressing close on the titlebar will close the entire app)
• Move out Titlebar Snap Window options to individual items
• Add Portuguese Translation by DouglasGomes123
• Cleanup code
2.32 Beta - 14 May 2014 - 2320 GMT+8
• Change OverlayView to inflate using the module's context
• Change the SplitBar to use DPI in build.prop instead of per app DPI
• Add Snapped Apps List. (Access from the SplitBar buttons)
• Add New Titlebar icons (by @BachMinuetInG)
• Add "Galaxy Note 3"-like multi window dragger menu
• Add Colorable White Touch Drawables for Split Bar (thanks @BachMinuetInG)
• Fix Activity starting out unsnapped if it was previously resized
• Fix resizing outline shows but doesn't disappear when using the corner to close the window
• Fix Force Close when resizing window with AeroSnap disabled
• Fix Windows sometimes syncing when it is not in halo mode
• (Partial) Fix for SplitBar showing on top MultiWindowSidebar
• Revert "(Attempted) Fix for TitleBar going under status bar for TouchWiz devices" (since it didn't work)
• Revert "(Attempted) Fix for closing apps on shows an animation black screen glitch" (since it didn't work)
• Update German Translation (thanks @Schokonuss)
• Update Chinese (China/Taiwan) Translations (Thanks @Pocket Fan)
2.30 Beta - 26 April 2014 - 1200 GMT+8
• Add New Design for Split Bar
---- Make the bar look like Samsung Galaxy Note 3's Multiwindow
• Add Split Bar Color Option
• Add option to hide StatusBar Taskbar icon
• Add option to hide Titlebar when snapped
• Add option to hide Titlebar when maximized
• Add Window Position Syncing for Dialogs
• Fix Split Bar's Focused App Indicator not switching after using "Swap Windows"
• Fix Split Bar disappearing when pressing back
• Fix Overlay View being (sometimes) added more than once.
• Fix "Drag To Move" Bar not dragging when "Allow ActionBar to Move" is disabled
• Fix some apps not starting snapped directly when it is set (seen when using MultiWindowSidebar)
• Fix resizing while snapped doesn't restore previous size
• (Attempted) Fix for Overlay View not taking up entire window <-- Tell me if this works
• (Attempted) Fix for TitleBar going under status bar for TouchWiz devices <-- Tell me if this works
• (Attempted) Fix for closing apps on shows an animation black screen glitch <-- Tell me if this works
• Code Cleanups:
---- Catch a NPE in ActionBarColorHook
---- Memory Optimizations to Overlay View
---- Remove Titlebar from overlay view if not in use.
---- Code Cleanup to Split Bar
---- Optimize checking of halo flag & movable preferences
• Update Russian Translations (Thanks @migel13)
• Update Chinese (China/Taiwan) Translations (Thanks @Pocket Fan)
• Update German Translation (thanks @Schokonuss)
2.28 Beta - 14 April 2014 - 2145 GMT+8
• Add method to start apps directly snapped to sides (See OP for more details, "How to Launch in Floating Mode; For Developers")
• Add "Snap Window" Options to TitleBar's 3-dot menu
• Add Snap-in Window (2 finger) Swiping to next app (Not enabled by default because it is a little buggy)
• Move Movable & Resizable and Testing Settings into new actionbar drop-downs
• Fix some App Chooser crashes
• Fix Window Overlay Views not showing for some apps.
• Fix Snap-in Windows snapping to the wrong side after disabling "Retain Window Position on Start"
• Fix Split Bar Options auto showing when moving bar.
• Fix bug in split bar mode where tapping titlebar causes app to re-snap itself
• Fix Split Bar Swap Windows not swapping apps properly when one app has an even number of activities open
• Fix some bugs in Single/Long Click Notification Options
• Fix duplicated split bars sometimes occurring
• Fix App Choosers not showing apps with same name but different package
• Update Chinese (China/Taiwan) Translations (Thanks @Pocket Fan)
• Update German Translation (thanks @Schokonuss)
• Small optimization to code: Make objects (inherited from the activity) to constants
2.26 Beta - 21 March 2014 - 1100 GMT+8
• Add Focused App Indicator for Split Bar (Arrow points to the focused app, like in Samsung's multiwindow)
• Add Swap Windows, Reset Positions Option to Split Bar
• Add Snap Windows Option in Drag To Move Bar
• Fix Split Bar not working properly in landscape.
• Fix Split Bar not taking up entire screen width
• Fix Mistake in Tinted Title Bar (that caused it to stop working)
• Fix StatusbarTaskbar reloading running apps even when screen is off
• Fix Split Bar still visible after minimizing apps using the Home button
• Fix for apps always showing Drag To Move bar bug (eg. Gmail) :
--- Add alternative method to find views with tag
--- Allow TitleBar OnClickListener to use tags to find view
--- Fix for Transparency Dialog crashing (in apps with always showing Drag To Move bar bug)
• Code Cleanup + Optimization :
--- Move Movable & Resizable overlay to another view class
--- Move Transparency Dialog into a new XML file
--- Optimize Tinted TitleBar Codes
--- Catch Exception in MultiWindowDragger
--- Optimize retrieving overlay view in onResume
--- Optimize some codes to reduce memory usage
• Add Chinese Traditional Translations (thanks to Pocket Fan)
• Update Chinese Simplified Translations (thanks to Pocket Fan)
• Update German Translation (thanks to @Schokonuss)
2.24 Beta - 17 March 2014 - 2330 GMT+8
• Add Snap-in Split Bar
(A feature similar to Samsung's Multiwindow split bar but integrated to snap-in windows in this module)
• Add Statusbar Taskbar
(Thanks @pijulius for the original idea and codes. Thanks @DHM47 for some codes.)
• Cleanup PackageNameAdapter codes & Optimize AppAdapter
[Should fix Blacklist/Whitelist Force Closing]
• Optimize (Whitelist, Blacklist) App Loading
• Revert "Fix position not saved after starting app." from v2.22
[Fixes another bug for apps that use a splash screen (and did not get
touched by the user) and open the main screen without user interaction]
• Fix VPN problems when Tinted Titlebar is enabled
• Fix Snap-in Windows snapping before the blue outline is shown
• Change Snap-in Window Default Value to true
(so new users won't need to turn it on manually)
• Add Chinese Simplified Translations (by Pocket Fan)
• Add German Translation (by Schokonuss)
2.22 Beta - 28 February 2014 - 1630 GMT+8
• Add Tint Window Corners (set enabled by default)
• Add Italian Translation (thanks to Raffaa)
• Add Russian Translations (thanks to migel13)
• Fix NPE in changeTitleBarColor
• Fix Titlebar not being tinted instantly when app starts
• Fix app position not saved after starting app. (Constant Window Position)
• Fix "Constant Window Position" not working fully on corner triangle/quadrant drag
• Fix for Kitkat (All apps opening in halo with "Force New Windows in Halo" enabled) Bug
• Fix "Restore App" Notification not removed when restoring without using notifications
• Reduce Preference Retrieving for Constant Window/Retain Start Position
• Changed default value of these to true: (so new users won't be so confused)
(1) Disable Auto Close, (2) TitleBar Enabled, (3) Border Enabled, (4) Border Color
• Fixed Dependency of this:
(1) Quadrant Dependency
2.20 Beta - 26 January 2014 - 2330 GMT+8
• Add Tinted TitleBar Option (based on Tinted StatusBar by @MohammadAG)
• Add Option to Force Apps in Recents
• Add another Whitelist / Blacklist Option
[Blacklist all apps & only allow whitelisted apps to be opened in halo]
• Add Customizable TitleBar Separator (Thanks to @pijulius)
• Add option to toggle if app shows a notification in statusbar when you minimize it (Thanks to @pijulius)
[the "Restore Application, This floating app has been minimized" notification]
• Change "Hide Entire App" to "Minimize App" for Corner Actions.
[since we already have the option to enable/disable "Minimize to Statusbar"]
• Fix unsnapping windows sometimes not going back to original size (Snap-in Windows)
• Fix tapping on buttons without moving window cause it to be unsnapped (Snap-in Windows)
• Fix Maximizing Window when snapped causes a FC (Snap-in Windows)
• Fix titlebar not able to move window when "Allow ActionBar To Move" is disabled
• Fix top of window border hidden under titlebar
2.18 Beta - 12 January 2014 - 2300 GMT+8
• Add Whitelist / Blacklist Options
1) Always open apps in halo except blacklisted apps
2) Never open apps in halo except whitelisted apps
• Removed Previous TW fixes because it had no effect
• (Another Possible) Fix for TouchWiz Devices closing window on touch outside with movable windows.
• Fix Outline Resizing not showing correct size on Android 4.3+
• Fix 1 pixel gap in snap-in windows
• Fix Bug where Snap-in Windows is enabled on triangle/quadrant regardless of settings
• Optimize Minimizing App with notification
• Improve Blacklisting Code (if whitelist worked for you, then blacklist bug should be fixed.)
• Small Cleanups in code (Remove duplicated code, text)
2.16 Beta - 01 January 2014 - 1320 GMT+8
• Add Snap-in Windows (similar to Aero Snap) >> Video
• Add Whitelisting
• Add Outline Resizing (set to default, you can switch back to live resizing in the settings.)
• Remove checking if parent activity is halo if itself is already halo (speeds up launching)
• Fix Bottom-left resizer moving Window to the right on first touch and when dragging out of the screen
• Fix Window not restoring old size after maximizing
• Fix crash with some apps that launch a floating window. (especially on kitkat)
• Partially Fix gmail bug. (Titlebar may/may not show properly still.)
• Fix QuickSettings Mods for Non-Cyanogenmod-Based ROMs
• (possible) Fix for touchwiz touch outside bug
2.14 Beta - 28 December 2013 - 0020 GMT+8
• Fix Bug with Quick Settings using if Long Press option's preference box.
• Fix Bug with triangle not resizing properly when window is maximized
• Fix Bug where Drag To Move bar will be overlapped by the statusbar when at the very top
• Optimize + Fix Bottom-Left resizing by disabling animation inserted by Android
• Optimize Bottom-Right Resizing
• Optimize App Focus Changing
• Add Auto-Resize and Auto Re-position on Rotate. (very buggy)
(Some apps refuse to take note of the rotation change)
• Add TitleBar for Dragging with Close, Maximize, Minimize.
Merry Christmas!
2.12 Beta - 25 December 2013 - 0240 GMT+8
• Add Maximize App Option for Quadrant/Triangle Single/Long Press
• Add ability to drag using triangle/quadrant to move
• Add ability to disable dragging the actionbar to move
• Add Option in Drag To Move Bar to minimize app with notification. (slightly experimental)
• Fix bug where toggling movable windows only takes effect after restarting twice.
• Fix Bug where 1st Resizing moves app into the top-left / top-right corners
2.10 Beta - 22 December 2013 - 2115 GMT+8
• Attempt to prevent apps from noticing that another app has opened.
(Maybe helps prevent from acting weird when opening another app)
• Add Corner Action to Show Drag To Move Bar without hiding corners.
• Add Recent Apps Screen "Open in Halo" option
• Add Testing Screen to test opening apps and check if module loaded successfully
• Fix Transparency Slider Initial Text showing wrong value (100% all the time)
• Fix Single/Long Press Notification Exception when notification is updated (on ICS)
• Fix Bug where blacklisting system ui makes app focus changing fail to work
• Fix Bug where done button stops working after opening & closing new activity
• Fix disabling App Pausing on ICS
• (Untested) Possible Fix disabling App Pausing on TouchWiz.
• (Untested) Possible Fix for Bug where touching outside will close window even with resizing enabled
2.08 Beta - 19 December 2013 - 1140 GMT+8
• Backported Long/Single Press Notification Option to ICS
• Blacklist Apps to never open in floating mode.
(Really never, including "force new windows in halo")
• Option to Prevent Moving Home to the front (when using recent apps screen)
• Corner Actions for Transparency Slider and Hide Entire App
• Fix bug where closing an activity via the corner will break closing for other activity of same app
• Optimized SystemUI Restarting Method
• Changed App Description and some Settings Description
2.06 Beta - 10 December 2013 - 2240 GMT+8
• Fix Corner Actions "Close App" on ICS
• Use HW acceleration for app that support it to have smoother resizing.
• Add resizing for Quadrant.
• Allow Triangle/Quadrant to be hidden + to disable resizing.
• Add Customizable Border around movable window
• Add Single Click Action for Triangle
• Retain Window Position on Start
(When opening a new window of the same app, place them in the same position and size of the original.)
• Constant Window Position
(When resizing or moving a window, windows of the same app behind it will also be updated.)
2.04 Beta - 02 December 2013 - 2350 GMT+8
• Changed apps opening over halo into a preference.
• Fix Triangle Showing as Squares for ICS
• Added Choosable Action for Triangle Long Press
• Added Bottom Right Quadrant with Single/Long Press Option
2.02 Beta - 29 November 2013 - 0900 GMT+8
• Added Restart SystemUI Option (Requires Superuser permission)
• Fix Apps Opening in Fullscreen above Halo Window
• Optimized (quite a few) Reflections in App Launch
• Possible Fix for some apps still not showing resize triangle
• Option for Quick Settings to be open in floating mode.
(Also works with Cyanogenmod's Quick Access Ribbon)
2.00 Beta - 27 November 2013 - 0010 GMT+8
• KitKat Compatibility! ~90% Compatible.
• Major Code Optimization for faster app starting
• Re-did UI to an actual preference screen
• Fix Transparency Dialog Percentage showing in black for some apps
• Fix Triangle not showing on some apps
• Fix Triangle not touchable on some apps (eg. Google Play)
• Customizable Triangle Color, Transparency, Size
• Option to have Single Click Notifications to open in halo. Long press to "Open Normally"
• Option to Disable Auto Close on Screen Off or Home Press
• Option to Allow App to be shown in Recents
Changelogs for version 1.00 to version 1.24 are here
(Version No. are only even numbers, odd numbers are for testing between beta releases)

FAQ
Where's the HALO bubble like in ParanoidAndroid?
This is only the popup window. No bubble is included.See Instructions
Compatibility
Any ROM (ICS onwards)
There are some exceptions. Please see the ROMs with Issues below
ROMs with issues
All Kitkat ROMs
Some Kitkat ROMs prevent multiple windows from opening on the homescreen. This is ROM bug is present if your ROM does not contain the patch that was created on Jan 9, 2014.
Some ROMs (especially OmniROM hasn't included this fix until now Android 4.4.4)
Fix: Use this Xposed patch to fix this issue​
ROMs with OmniROM Multi-window
OmniROM uses the same flag 0x00002000 for multiwindow. Therefore, the 2 will conflict.
No fix yet.
(it is planned to have an option to use a different flag in future versions) ​
ROMs with ParanoidAndroid HALO
ParanoidAndroid uses the same flag 0x00002000 for HALO. Therefore, both the ROM's codes and this module's code will run at the same time. This might cause some lag and slow-downs, but should not impact the functionality.
Disable Halo in the settings if possible​
ROMs with "Floating window with multitasking"
The code is mostly based on those in XHaloFloatingWindow. Therefore, both the ROM's codes and this module's code will run at the same time. The native code will "win" and this module will appear non-functional.
No fix yet
(it is planned to have an option to use a different flag in future versions)​
Samsung TouchWiz ROMs
Pauses app behind regardless of setting & movable and resizable windows close on touch outside
There are problems with Samsung Stock ROMs due to MultiWindow Codes conflicting.
Possible Workarounds:
1)Disabling Multiwindow
(1) Manually Disable Samsung Multiwindow
(2) Flashable ZIPs to Disable Samsung Multiwindow
2) Change the transparency to 99%
http://forum.xda-developers.com/xpo...floatingwindow-beta2-16-t2419287/post53259392​
If there are any issues and you would like to help in the development, please report in this thread.

Thanks for reading through all the posts!
Reserved

reservedd

I cannot find the halo bubble op.I already installed xposed framework and HALO ))).MY devices is Xperia j.android 4.1.2. Stock
your modded HALO is prase error in my xperia.so i use my modded HALo for 4.1.2 backported version.
Sent from my ST26i using xda premium

hacker0377 said:
I cannot find the halo bubble op.I already installed xposed framework and HALO ))).MY devices is Xperia j.android 4.1.2. Stock
Sent from my ST26i using xda premium
Click to expand...
Click to collapse
This is not the HALO bubble. This is the HALO Floating Window only. It is the one seen in the screen shots where apps open in a downnsized mode above your current app.
For HALO bubble, use Floating Notification which is compatible with this mod. You can then use "Launch apps in Halo window (Supported ROM's only)" in Settings of the Floating Notification app with this mod.
As for my HALO))) not working, I tried downloading it again and installing on my phone. It works for me. Maybe try redownloading and give more info on the error?

here are some screenshots of my devices

zst123 said:
This is not the HALO bubble. This is the HALO Floating Window only. It is the one seen in the screen shots where apps open in a downnsized mode above your current app.
For HALO bubble, use Floating Notification which is compatible with this mod. You can then use "Launch apps in Halo window (Supported ROM's only)" in Settings of the Floating Notification app with this mod.
As for my HALO))) not working, I tried downloading it again and installing on my phone. It works for me. Maybe try redownloading and give more info on the error?
Click to expand...
Click to collapse
i download three time your HALO )) apk and same prase error on my xperia 4.1.2.i will try later on my cm10.or Can you mod the HALO))) apk in my attachment on the above comment
EDITED
i look into the Android Mainfest.xml of your HALO))) apk and your min sdk version is 17 and target sdk version is 18,since sdk version of 4.1.2 is 16.i think your Modded HALO))) apk will not work in 4.1.2 device.i think.

hacker0377 said:
i download three time your HALO )) apk and same prase error on my xperia 4.1.2.i will try later on my cm10.or Can you mod the HALO))) apk in my attachment on the above comment
EDITED
i look into the Android Mainfest.xml of your HALO))) apk and your min sdk version is 17 and target sdk version is 18,since sdk version of 4.1.2 is 16.i think your Modded HALO))) apk will not work in 4.1.2 device.i think.
Click to expand...
Click to collapse
oh so that's where the problem is. can you confirm that pressing the menu button and clicking on open Xposed installer from XHaloFloatingWindow opens it in floating mode? if it does, the mod is working and Floating Notifications from Play Store will be able to make use of it. mean while, I will re-edit the APK for my modded HALO)))

I confirm. Parse error upon installation in 4.1.2
Sent from my Micromax A92 using Tapatalk 2

zst123 said:
oh so that's where the problem is. can you confirm that pressing the menu button and clicking on open Xposed installer from XHaloFloatingWindow opens it in floating mode? if it does, the mod is working and Floating Notifications from Play Store will be able to make use of it. mean while, I will re-edit the APK for my modded HALO)))
Click to expand...
Click to collapse
yes it open in floating mode when i open xposed instaler from menu of your XHFW.but it can only open xposed installer.not for others

Can someone link me to the ported halo bubble..?
Sent from Navi

Not exactly sure why, but every application works except for Facebook lol
Sent from my HTC6435LVW using XDA Premium 4 mobile app

Mostly working on my HTC One with TrickDroid 2.0 (Google Edition).
The popup shows up, but it does not dim the background.

hacker0377 said:
yes it open in floating mode when i open xposed instaler from menu of your XHFW.but it can only open xposed installer.not for others
Click to expand...
Click to collapse
Try this: https://docs.google.com/file/d/0B7CBSsJQIV5-VGJyNVpSLXg2UHc/edit
michaelg117 said:
Can someone link me to the ported halo bubble..?
Sent from Navi
Click to expand...
Click to collapse
https://play.google.com/store/apps/details?id=robj.floating.notifications&hl=en
UchihaKite said:
Not exactly sure why, but every application works except for Facebook lol
Sent from my HTC6435LVW using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Yea. Still looking into facebook and some other large apps.
Therealkris said:
Mostly working on my HTC One with TrickDroid 2.0 (Google Edition).
The popup shows up, but it does not dim the background.
Click to expand...
Click to collapse
It does not dim? It can be changed from settings if it does not dim.
or it Blackens to opaque? That means your ROM has a changed "fullscreen" field in "com.android.server.am.ActivityRecord". I'll look into the source codes and update my mod if so.

I can confirm this works on CM10 but not all apps will work.
I hope u can make halo bubble port also.

Gotta say, a legit halo bubble that integrates this would be far better then using with FN
Sent from Navi

zst123 said:
Try this: https://docs.google.com/file/d/0B7CBSsJQIV5-VGJyNVpSLXg2UHc/edit
https://play.google.com/store/apps/details?id=robj.floating.notifications&hl=en
Yea. Still looking into facebook and some other large apps.
It does not dim? It can be changed from settings if it does not dim.
or it Blackens to opaque? That means your ROM has a changed "fullscreen" field in "com.android.server.am.ActivityRecord". I'll look into the source codes and update my mod if so.
Click to expand...
Click to collapse
thz you.i will try.i will help you in future .thz for your hard work Good luck

Related

[APP][4.2+][3.1.2][Discontinued/Open sourced] Wanam Xposed

Discontinued in favor of XTouchWiz for Marshmallow.
Do NOT install it on Marshmallow devices, use XTouchWiz instead.
If you are a developer and want to improve this module or develop your own module for TW Lollipop Roms, you can use my attached sources (Wanam Xposed L 1.3.0)
XTouchWiz is also open source on Github if anyone wants to backport any new features/fixes to LL Roms.
This Application let you customize your Samsung Android 4.2+ Stock firmwares, it should work with custom Roms too, but i HIGHLY recommend to use it with a Stock Rom.
Beta Tester:
- Follow this page
- Register for beta testing on Google Play.
Check here for Android Touchwiz Lollipop support.
Features list:
Call Recording
Auto call recording (GalaxyS5 and newer devices)
4 Ways Reboot (Reboot, Recovery, Hotboot, Download)
Full Color/Transparency customization for Status bar and Notification drawer elements
Secure Samsung Keyboard
Option to keep "Add Call" button with Call recording menu
Disable Camera shutter sound (+Screen Capture)
Flashlight trough volume button UP
Skip Music with Volume buttons
Save Call Logs View
Enable Keyboard Symbols
Enable Hangouts Calls trough cellular
Enable Camera while calling
Unlimited and Customizable Multi-View support
Bypass Exchange Lock check (Must be enabled before account setup)
Notification Panel Customization
Long Home key behavior
Long Back key to kill App (+ white list)
Disable increasing ringtone
Messaging Tweaks (raise limits and conversion)
Disable Scrolling cache
Enable Full rotations
White/Colored Circle Battery
Transparent Notifications panel
Customize Clock format and size
Customize Battery text helper size
Customize Quick Settings buttons number per row
Collapse Quick Settings after toggle
2 line formatted date on the panel header
Dark themed Multi-Window
Disable Boot sound
Customize Two line date header format
White/Black Email App background (Supported on some devices)
Transparent Quick Settings buttons background
Default hidden SMS logs
Add Call button to Logs and Contacts list
Disable Accounts icons on Contacts list
Custimize Wifi AP Clients number
Disable Launcher page rotation
Add Exit button to browser
SMS Automatic input mode
Disable Call number formatting
Enable unlimited Contacts joining
Enable Gallery Rotation trough button
Set default Browser view to Desktop
Hide Wireless charging popup
Hide Full Battery Notification
Clock position Status bar (Hide, Left, Right, Center)
NFC behaviors (UN/Locked on Screen ON/Off)
Hide Headset icon and notification bar
Disable TW DVFS
Blacklist for Application where you want to disable DVFS when it's default enabled
Hide Smart Stay, Alarm, NFC icons on status bar
Launcher: Enable Scroll wallpaper and Hide Dock labels
Disable Wake Home button
Use separate Address field on Contacts
Add Fast PIN unlock (to be used with caution)
Added SMS sent time details
Enable Screen ON options on Messaging App
Disable low Battery warning
Add custom carrier label on notification label
Set low Camera battery level
Change System Holo Dark/Light background
Acces hidden Lockscreen shortcuts menu
Disable SEAndroid/Knox notifications and container
Disable volume control sound
Disable low battery sound
Auto Disable Knox notifications when Knox Apps are installed
Set SELinux to Permissive mode on boot
ScreenShot and ScreenRecord (Requires Busybox) on Power menu (KitKat FWs only)
CM Numeric Circle battery (Kitkat Roms only)
Screen Off animation (CRT/Fade) (Kitkat Roms only)
Expand all notifications
Disable Temperature check on Camera recording and Flash
Enable Heads up notifications for Kitkat Builds (Optional ongoing notifications and display delay customization)
Support SHealth and Private mode (Disable secure storage on both Apps)
Disable battery and USB cover warning
And more to come
Download (Kitkat).
Download (Lollipop).
Walkthrough video by @savadam:
How to install:
Video by @savadam :
Make sure your have a working Root access
Download and install Xposed framework from here. then REBOOT your device
Download Wanam Xposed from the PlayStore (or direct download link bellow)
Activate Wanam Xposed from the Xposed Installer then REBOOT your device
Enjoy!
I included an Ads banner to support my work, but you can hide it from the advanced preferences, all other alternative supports are welcome, you can Donate and Rate the Application on the PlayStore.
If you want to help translating this App, use this template, translate it to your language and upload it on this thread.
If you have any bug to report, PLEASE follow these steps:
Did you read the FAQ? Please read it!
Explain your issue clearly, i can't guess your situation
What's your Rom and Device model?
Any installed Xposed modules, Mods or themes?
Upload your Xposed Logs (get it from Xposed Installer).
Thanks to:
Rovo89 for his awesome work on Xposed framework and Mods.
Tungstwenty for contribution on Xposed framework and his many Mods
Nottach inspired from his App
CM and Omni team
C3C076, Scrosler, Shoman94, Romracer, Qwerty12, Xperiacle, Tschulieh and all Xposed Mods contributors (Please let me know if i miss anyone)
@Omniwolf, @the legend, @combat44, @viruslaura, @www1, @Seyaru, @splendid, @mattiadj, @nasedoua, @gsdsrock
, @Alan-B and @Atomregen for the translations
Wanam Xposed FAQ
F.A.Q:
Q: I installed the your App, but nothing happen after reboot?!
A: Make sure you have:
A working Root access
Granted Root access to my App
Xposed framework installed and up to date (install it through Xposed Installer App)
Enabled my App on the Xposed modules list
Q: I tried to install your App, but i'm getting a bad parsing error!
A: Because you are NOT running the required Android version 4.2+.
Q: Why this Application requires Root access?
A: Because it is NOT only an Xposed module, it uses Root Access to enable many CSC features, and do noob helper checks.
Q: Why i can't find a feature which is mentioned on the features/change-slog list?
A: Because it is NOT compatible with your Device or Android version.
Q:Why don't you enable this feature for my device too?
A: Because it requires much time to port and test it (which i don't have usually), or simply i don't own a device running your Android version to debug on it.
Q: I start the screen recording but how to stop it? i get a broken video files!
A: You MUST have Busybox installed, and unplug any USB cable to get the Stop ticker on the notification bar.
Q: Call recording is NOT working or i'm getting a bad recorded sound! PLZ fix it!!!
A: Nothing to fix from my side, it depends on each device, so blame Samsung for this, it IS a Stock feature.
Q: The hidden Torch is NOT working: PLZ fix it!!!
A: This one is also a Stock feature, so blame Samsung for it, or try my Xposed Torch App, it does the same thing.
Q: Why don't you make this Application available for Android 4.1.2 and GB?
A: Because it needs a lot of time and debugging and it can NOT be done without the device on my hand.
Q: Why don't you make my changes applied on the fly? why do i need to Reboot?
A: Because i care about performance, applying a feature change on the fly means the related stock Method MUST be hooked on boot, which means all impacted (by my module) System Methods should be hooked on boot even if most of them are NOT used.
Q: I'm getting some annoying Root notifications
A: Check "Trust System User" and Uncheck "Show notifications" on SuperSU App
Q: I'm getting a boot-loop!
A: Flash Xposed disabler patch (you will find it on your sdcard) through CWM recovery
Q: Does the changes persist after uninstalling the Application?
A: You keep only the CSC features, all Xposed changes will be lost.
Q: How to set an Element Transparency to 100% (Opacity = 0):
A: This way:
{
"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"
}
Change-log and Screenshots:
3.1.2:
- Auto call recording (For Galaxy S5 and newer devices, I can NOT port it to older TW Roms)
- Disable Camera forced shutter sound (We do NOT rely on sound files anymore, You may need to reset your Camera settings to get shutter back)
- Blacklisted Page buddy on heads up notifications
- Disable Battery and USB cover warning
- Few other compatibility fixes with the new Samsung TW (GalaxyS5 and newer)
3.1.1 (+3.1.0):
- Disable escalating ringtone (GS5 support)
- Disable Secure storage on Private mode (This should let you use Private mode with Xposed)
- Add a blacklist for DVFS (You can keep DVFS enabled except for your selected games, heavy apps...)
- Add Spain sub-symbols on Samsung keyboard
- Update some translations (Thanks to all translators)
- Fixed some reported crashes
- Minor other fixes
3.0.3:
- Bypass Secure Storage checks on SHealth
- Get rid of Root commands notifications
- Many other improvements and bugs fixes
3.0.2:
- Set Contacts history default view to "All Calls" (GalaxyS5 support)
- Update the "Fake system status" implementation
- Updated some theme features support for GalaxyS5 TW UI
- Updated Korean translation (Thanks to Splendid)
- Updated Knox notification support (GalaxyS5)
- Many improvements and bug fixes
3.0.1:
- Speed up App loading/closing
- Blacklisted SHealth from MV
- Blacklisted Phone App from HeadsUP notifications
- Call recording fix for GS5 (Thanks to DevVortex)
- System server crash fix (Thanks to Thomashofmann)
- Added and updated some translations (Big thanks to all translators)
- Fixed fonts size and style overriding bug
- Many other fixes
2.9.9:
- Enable Heads up notifications for Kitkat Builds (Optional ongoing notifications and display delay customization) (Thanks to MohammadAG)
- Possible fix for Call recording and SMS logs for the GalaxyS5
- Add R/W permission on external SdCard (If not exist)
- Many other fixes
2.9.8:
- Fixed some notification elements redraw
- Call recording support for Samsung GalaxyS5 (untested)
- Update Korean and Russian translation (Thanks to Splendid and Combat44)
- Few other bug fixes
2.9.7:
- Fixed notification element pressed color
- Use Crop feature for image background settings (Your device must have a Crop App, most of Samsung FWs should have one)
- Update Italian translation (Thanks to Mattiadj)
- Few other bug fixes
2.9.6:
- Bypass Temperature checks on Camera recording and flash
- Customize Heads UP background
- Update translations (Thanks to Sandeep and Splendid)
- Few other fixes
2.9.5:
- Fixed a Notification Panel Background redraw on Kitkat builds
- Update Italian translation (Thanks to www1)
- Few other fixes
2.9.4:
- Maintenance update and translations updates (Thanks to Seyaru and Hakan Guven).
- Updated DVFS disabled implementation to support Toucwiz Kitkat
2.9.2:
- Added Turkish language (Thanks to Hakan Guven)
- Fixed Long back toaster, display the App name instead of the package name
- Few bug fixes.
2.9.0
- Source code review
- Removed some useless logs and improved exceptions logging for better bug reports
- Force MMS connect (get MMS without manually enabling mobile data)(Thanks to ICavalera for the tip)
- Home button long press (should support only Google Now on Kitkat)
2.8.4:
- Fixed SMS on Call logs regression
- Minor bug fixes
2.8.3:
- Fixed Russian language (it has been updated incorrectly on 2.8.2)
- The Call button DPI (on Logs) fix is now optional.
- Updated Ukrainian translation (Thanks to @nasedoua)
2.8.2:
- Added Kitkat support for Fast PIN unlock, Hide emergency label, Hide and customize Carrier label on the Lockscreen, with a few other fixes.
2.8.1:
- Fixed some regressions
- Added Ukrainian translation and updated French and Korean translations (Thanks to Splendid, Nasedoua and AlbatorV)
2.8.0:
- Fixed a Samsung stock bug related to Call button DPI on Call Logs
- Added "Expand all notifications" feature (Thanks to @UgglyNoodle)
- Few other minor fixes.
2.7.4:
- Bug fix for the US variants and devices using "others.xml" configs.
2.7.3:
- Fixed some stock upper-cased csc features values, this should fix the Camera bug on some devices.
2.7.2:
- Add Screen off animation (CRT/Fade) (Kitkat)
- System them style on the Reboot dialog (Kitkat)
- Fixed Reboot download (Kitkat)
- Many other improvements
2.7.1:
- Change Color of Circle Battery (Kitkat)
- Change Color of Circle Battery Text (Kitkat)
- Option to add Screenshot to Power menu (Kitkat)
- Option to add Screen Record to Power menu (Kitkat)
- Show/Hide Reboot confirmation on 4 way (Kitkat)
- Hide Handle Close line (Kitkat)
- Updated French and Chinese translation (Thanks to @Albator V and @splendid)
Thanks wanam trying now
Sent from the state where marijuana is NOT illegal..
chris_marsh said:
Thanks wanam trying now
Sent from the state where marijuana is NOT illegal..
Click to expand...
Click to collapse
+1
downloading v1.9 of wanam's rom and then will try this!
Good luck brother and thanks for your amazing work
Sent from my GT-I9500 using xda app-developers app
has considered implementing in android 4.1.2
"Double HOME button click action" / "Recent Apps" doesnt work on S3 4.2.2 Wanam 7.1
Does nothing.
badkill said:
has considered implementing in android 4.1.2
Click to expand...
Click to collapse
Sorry no, there are a lot of difference between 4.1.2 and 4.2.2 sources.
FDisk80 said:
"Double HOME button click action" / "Recent Apps" doesnt work on S3 4.2.2 Wanam 7.1
Does nothing.
Click to expand...
Click to collapse
Working fine here on stock ME7! anyone else?
Thanks @wanam!
Please, can you add transparent status bar in main and lookscren and black in apps?
Sent from my GT-I9300 using Tapatalk 4 Beta
wanam said:
Sorry no, there are a lot of difference between 4.1.2 and 4.2.2 sources.
Working fine here on stock ME7! anyone else?
Click to expand...
Click to collapse
Even if you disable S-Voice?
Or maybe it's an issue with Nova?
FDisk80 said:
Even if you disable S-Voice?
Or maybe it's an issue with Nova?
Click to expand...
Click to collapse
Got it working. It was S-Voice, you must have it enabled and turned on for double click to work.
Excellent wanam my friend! :good:
thanks!
regards!
Brilliant. Everything works from what I use. Good work from a dev that also makes things work properly.
Nice work, Thanks
please import in the apk for the Notifications Panal
- ongoing title
- ongoing items
Transparent status bar please
Thanks for your work and crt off please
@wanam, loving you work on the Note II - Will this be available for the Note II anytime soon??
Sent from my GT-N7100 using Tapatalk 2
Hi wanam, with the option "white list" do you mean stay in memory? Thanks
Sent from my GT-I9300 using xda app-developers app
Wanam, would be possible to implement the options:
* Hide input method switcher
* Hide blocking mode notification
* Hide full battery notification
Thanks dude.
Can you import all nottach options in your app
Now I use nottach and your app to have all functions with modded systemui to work everything
But with nottach many people have problem with hiding and appearing statusbar
Sent from my GT-I9505 using xda premium

[app][gb] jelly bean styled status bar

Hello Guys, Today I am introducing an application called MAPPZ Quick Settings
Description
MAPPZ Development announces:
QuickSettings
If your license isn't working, please contact me!
MAPPZ QuickSettings is aimed to bring all your favorite settings and apps to your fingertips.
It emulates the a second statusbar. You can pull it down from a set space in your statusbar.
Toggles:
• User toggle
• Battery indicator
• Ringer mode (normal/vibrate/silent)
• Settings panel
• Task killer
• Auto-brightness switch (auto/normal)
• Screen dimmer (black transparent overlay for better battery use)
• Rotation toggle (Auto-rotate on/off)
• Airplane mode
• Wi-Fi
• Bluetooth
• GPS
• Data
• NFC
• Torch / Flashlight
• Wakelock (Keeps screen on)
• QuickSettings configuration
QuickSettings configuration:
General settings
• Start on boot
• Statusbar above QuickSettings
• Hide when statusbar hides
• Fullscreen/wrapped drawer
• Lightsout: fade away the background when drawing
• Show on lockscreen
• Date bar above the QuickSettings
• Use 24-hour format
• Enable a shortcut button to the statusbar
• Toast a "X toggled" message after clicking a panel
• Vibrate after you click a panel
• Automatically close after you click a panel
Gesture settings
• Enable/disable gestures
• Vibrate on gesture
• Gesture launcher position (gravity)
• Gesture launcher width
• Gesture launcher height
Toggle settings
• Set enabled/disabled toggles
• Set custom toggles (choose apps to add to a panel)
• Set toggle order
• Set number of columns (3/4/5)
• Set toggle functions
• Customize the toggle layout
Notification settings
• Enable/disable a notification
• Notification click brings you to QuickSettings OR Configuration
• Enable/disable 4.2-like notification (see screenshot)
• Enable/disable persistent notification
• Enable/disable small icon in statusbar
• Pin the notification on top of all notifications
Set the app theme
• You can download additional themes from the Play Store
Pro center
• See the benefits
• Buy the license
• Get a license key for free (friends, family and testers only)
• Ask a refund
Some features are not accessible until you buy the PRO license
Search terms: Quick Settings, QuickSettings, MAPPZ Development, 4.2
All permissions that are requested will be used only for the app itself, no data will be collected, sent nor published.
(source: Google Play)
There is a free version in the Play store, just search
Code:
Mappz Quick Settings
and It will be the first one.
And a payed version (download the free version first, then buy the licence in the app)
I personally love the pro version, Without modding it "is" the status bar which is good with holo launcher, holo locker, making your friends think that your phone has jelly bean.'
In my next thread, I will show you the simple method to change your android version to whatever u like.
PRESS THANKS IF IT HELPED! I AM A STARTER IN XDA!

[ROM][PORT][KK] 6/17/14 Resurrection Remix® 4.4.2 KitKat v5.1.5

This is only a port, I did not develop this ROM; thanks to westcrip for permission to port his work, and thanks to RenderBroken for the kernel
Announcement from westcrip: "This is the final release of Resurrection Remix android kitkat series. I'll catch you guys on next android version A.K.A 4.5 or 5.0. See you soon.Thank 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"
}
...Original i9100 thread...
About Resurrection Remix ROM®
Resurrection Remix the ROM has been based on AOKP, CM, PA , Omni and original Remix ROM builds, this creates an awesome combination of performance, customization, power and the most new features, brought directly to your Device.
Many things that in previous versions were tweaked with mods, are now included by default in the ROM so, please enjoy!
Included Main Features:
Halo
Active display
Lockscreen Notifications
Application side bar
Omniswitch
Notification panel tweaks
Tiles style
Music Toggle
Pitch Black UI Mode
Camera mods
ListView Animations
Custom system animations
Custom progress bar
Screen recorder
Hardware buttons and navbar options
Status bar traffic monitor
Battery bar options
CRT animations
SB Brightness slider
Expanded desktop
Profiles
Performance controller
Flip tiles
Theme chooser
Keyboard features
Lockscreen see blur and reduce slider
Show Wi-Fi name
Headset action
Low battery warning
Lock clock widget
Privacy guard
Permission management
Power sounds
Share ROM
Battery mods
Changelog
Lockscreen options and targets
Center Clock/No clock/Right Clock
AM/PM,date and colors
New Wallpaper app
Nova/Stock launcher included
AND MORE...
Click to expand...
Click to collapse
Screenshots:
Click to expand...
Click to collapse
How to Install:
...For Fresh Install...
BACKUP BACKUP BACKUP
Download Resurrection Remix ROM® v5.1.5 ported for the i777 thanks to razen_kain for the file
Download Resurrection Remix® KK Gapps
Format /system
Wipe Data/Factory Reset
Flash the Rom (Kernel included in the flash)
Flash Gapps
Reboot
Enjoy RR!
...Updating from previous Resurrection Remix ROM®...
Download current version / gapps
Boot into recovery and flash both files
Reboot system and enjoy RR!
Click to expand...
Click to collapse
Announcement(s):
1) This is a straight up port, no added features or apps. It's as @westcrip built it.
2) This port comes packaged with RenderBroken's TWRP 3/22 CM kernel - be warned, it WILL install TWRP as your new recovery. If you want a CWM recovery, you can flash that independently; just know that I haven't tested it with the CWM version (although it should be fine).
3) If you encounter any problems please post in this thread, NOT the i9100 one. You will get no support over there because this is a port.
4) I will update this whenever westcrip updates the i9100 version, and time allows me.
5) Do not use the ROM updater under Resurrection Tools > RR Updates: it is NOT for the i777.
Click to expand...
Click to collapse
Changelog for 5.1.5
- Navigation bar dimensions
- Ability to disable hardware keys via nav bar settings
- Add android:key in hardware keys enable/disable option to forward enable this option
- Themes: Delete icon resources during uninstall
- Themes: remove unused code
- Themes: uninstallThemeForAllApps shouldn't check if map is empty if it's null
- base: remove extra checks
- Don't cleanup overlay mapping for non-theme apps
- appops: enforce appop for bluetooth disabled action
- About Resurrection: devcard layout - fix FC devcard on lanscape mode
- settings: FC on quick settings editor on tablets without a vibrator
- Add a HAF access permission
- Fix layout recreation check
- CameraTile: Launch default gallery app when long pressing active camera tile
- SystemUI: prevent NPE on clear recents double press
- MtpDatabase JNI: Fixed a memory-leak in getObjectPropertyValue().
- Correct stride for drawing to cached glyph bitmap
- Use alpha channel instead of red in drawCachedGlyphBitmap
- Temporarily hide lock screen unlock targets if opening a widget
- fw: media: Handle NPE due to threading race
- FW: LS Notification: fix FC when an expanded notification gets reposted without bigContentView
- fix derp on INotificationListener
- WallpaperCropper: do not display null bitmaps
- Make theme change broadcast a protected broadcast.
- Reduce memory leaks by removing all views.
- appops: do not prune apps that are not present
- apn: national roaming for ONO (Spain)
- fix more keyguard derp
- Mms: Clear notifications and mark messages read in certain situations
- galaxys2-common: fix front cam video recording
- Recovery - Version 6.0.4.9
- included all cm-11.0 m7 updates
- Check out the source activities for more details https://github.com/ResurrectionRemix
Link for 5.1.4
Changelog for 5.1.4
- Add gesture anywhere
- Add equalizer tile
- Add compass tile
- On-The-Go mode & shake to turn on/off torch
- Add system app remover
- Added Power button to available NavigationBar buttons
- Add on-the-go and volume as Default tile
- Fliptile animation:For Compass Tile & On-The-Go Tile
- SystemUI: Make wifi combo margin themable
- Lockscreen: Avoid SystemUI crash due to NPE - fix all bıtmap derp
- Fix resource leaks
- Fix hiding ADB notification
- CM11 Themes: Use package name from AndroidManifest
- wm: Underp menu key release processing
- Fix circle battery opaqueness for the low battery color
- wm: Make the default menu longpress action configurable at build time
- wm: Underp menu key release processing
- wm: Simplify menu action decision paths
- quiethours: fix vibrate option
- Keyguard : Fix album art sticking after playback is stopped
- fix default lockscreen targets
- CM11 Themes: Don't kill setup wizards
- Fix wallpapers not applying in full screen
- Added Non-Roaming for carrier BSNL in UP East and WEST INDIA
- frameworks: allow Keyguard package to be defined in overlay
- Keyguard: Make sure disabling Camera widget
- perf: Don't persist the perf profile across a reboot
- perf: Send a boost hint when a key on the navbar is pressed
- Animate circle battery rotation back to 0 after unplugging
- Bluetooth: Fix for device gets stuck in pairing
- Bluetooth: Acquire wakelock to turn on lcd during Connection
- settings: Move headset option, hide MoreDeviceSettings if empty
- Settings: Remove screen rotation from accessibility
- Settings: Allow access for external apps to launch ThemeSettings Fragment directly
- Settings: read keyguard package name from overlays
- Settings: Disable Battery status preference on ModLock.
- Settings: Remove "Make pattern visible" regardless.
- Settings: Device Maintainers: Remove janice & codina
- Settings: Maintainer : add device Galaxy Note int
- n7100 - Fix sensors - audio hal updates - Update fingerprint
- i9300 - Add iso mode settings to the CameraWrapper - fix preview/camera crash after stopping video record
- ResurrectionSetup updates
- Trebuchet updates
- Theme chooser updates
- Camera app improvements
- Calculator updates
- MMS updates
- Included lot of performance,sound and media updates
- Included All CyanogenMod source updates and fixes
- Check out the source activities for more updates https://github.com/ResurrectionRemix
Link for 5.1.3
Changelog for 5.1.3
- Peek: updates and fixes
- NEW: App Circle Sidebar
- Pitch Black : Red Action Bar
- Dismiss IME when floating window is dismissed
- Don't animate the circle battery meter when battery is fully charged
- Smart Pull-Down - Any Notification
- Themes: Support launcher based icon packs
- Remove blank app from notification access menu
- Add "Accept all files" option for incoming files via Bluetooth
- Revert "CPUFreq Tile"
- Perf: Improve performance profiles
- Immersive mode: don't unconfirm a package, that's just dumb
- Development: Add setting for overwriting recovery
- CM11 Themes: Allow defining a custom default theme
- Fix ressource leaks
- Bluetooth updates
- Add a getter for the x and y offsets of the wallpaper window
- Keep title clean : remove ® from resurrection remix title
- Updates to FR translations by Madikan
- Settings: correct y-axis brightness in preview
- Remove nova launcher
- Add maintainers: LG Optimus 4X HD-Nexus 7 2013-Nexus 7 LTE 2013-Sony Xperia M
- Trebuchet updates
- Torch updates
- Camera updates
- Themes app updates and improvements
- i9300-Device provides its own camera HAL
- i9300-n7100-Fix google camera
- smdk4412-common: fix charging animation
- smdk4412-common: Enable use of FFMPEG codecs for extended formats
- smdk4412-kernel updates
- hammerhead: Fix default value of color calibration
- Included lot of performance,sound and media updates
- Included CyanogenMod source updates and fixes
Link for 5.1.2
Changelog for 5.1.2
- Add New RR Team member t4n017 (Tano Abeleyra) to developer info cards
- Settings: make animations faster by default
- Floating Window:updates and fixes
- New Lockscreen custom wallpaper from cm11 .new theme chooser capable
- CPUFreq Tile
- WallpaperPicker: Destroy cropview to avoid leaks
- Allow 3 AT (mnc05) to roam on T-Mobile in Austria
- Avoid SystemUI crash due to NPE
- CamcorderProfile: Add 4k timelapse encoder constants
- AudioService: fix safe volume enforced even when disabled
- fix systemui fc while changing slim recents to left on hdpi compiled devices
- Second Clock Statusbar
- Add AutoRotate and music as Default tile
- MediaFile: support more media types
- UserTile: Fix displaying user information for multi-user devices
- Add missing mdpi, hdpi, xhdpi drawables for new theme engine
- remove xperia neo - hallon from device tree
- Fix NullPointerException issue when user change
- Packages : Fix for Softap turn ON/OFF fail issue.
- Fixes error message during pairing of HOGP devices
- Bluetooth: Ignore the second button if one already pressed
- Bluetooth: Release pan proxy object while coming out from tethering menu
- settings: Remove "mobile plan"
- make LinearColorBar themeable
- Settings: modify AOSP RU translation
- fix RR Tools xxhdpi PNG s
- Themes: List ThemeSettings as a valid fragment
- Add maintainer- Samsung Galaxy Nexus - Toro (by nasty007)
- Add maintainer- Samsung Galaxy Mega 6.3 - GT-I9205 / GT-I9200 (by Silesh.Nair)
- Trebuchet updates
- Theme chooser updates
- Torch updates
- Camera updates
- Email updates
- Recovery updates
- Mms updates
- Lockclock updates
- Latin İME updates
- Contact updates
- Translation updates
Link for 5.1.1
Changelog for 5.1.1
- Notification Peek (from Paranoid Android)
- Active Display: Many updates and fixes from OmniROM (thanx to t4n017 @ XDA)
- Updated the Torch app interface
- Speeded up the overall UI
- Fix recents showing up when waking the device with the home button
- Allow configuration of the default screen-off animation style
- Fix Airplane Mode on/off issue
- Update mobile networks icon in Settings
- Fix Total and available fields missing in Settings storage menu
- AudioService: Fix absolute volume for AVRCP
- Fix delay of Volume popup when tapping 'Volumes' in 'Settings>Sound'
- Allow Power Notification Sounds For Wireless
- Camera2: Update to use newer slow-shutter parameter
- Camera2: Prevent autofocus when video snapshot is in progress
- Camera2: Surface Qualcomm denoise option
- Camera2: Disable ZSL for slow shutter shots
- Contacts: QuickContact: onLongClick save item data to clipboard
- SystemUI: add AOSP RU translation
- i9082: fix low call volume bug
- Add maintainer Xperia Arc - Anzu (by 3andala)
- add maintainer Samsung Galaxy Nexus - Maguro (by nasty007)
- add maintainer Xperia Z1 - Honami (by omarainea)
- add maintainer Samsung Galaxy Mega 6.3 - GT-I9205 / GT-I9200 (by Silesh.Nair)
- add maintainer Samsung Galaxy S4 Mini - GT-I9195 / GT-I9190 (by Silesh.Nair)
- Add new Sony xperia maintainers NEO-NEOV-Z1
- hammerhead: Add hardware tunables support: display
- hammerhead: Add hardware tunables support: vibrator
- Torch: set default hasHighBrightness flag to false
- torch: Don't show the about dialog on first launch
- Hide search assistant arrow from lockscreen when custom lockscreen is enabled
- Bluetooth: pause music player on A2dp service disconnect
- Bluetooth: Add Total track number.
- Base: Many other updates to Bluetooth
- RR Tools French translations - translated by Pierre Delfosse
- Included lot of sound and media updates
- Included CyanogenMod source updates and fixes
Link for for 5.1.0
Changelog for 5.1.0
- Downloads: add support for manual pause/resume/stop downloading
- Gesture Lockscreen
- Notification Drawer: Custom Clock & Calendar Shortcuts
- About RR - Add new website
- Fixed 480x800 bootanimation zip looping (thanx to iceyhotguy @ XDA)
- For Device Maintainers: Added a new command - make dirty (read more - http://goo.gl/i1JB3W)
- Parallel Shutdown
- SlimRecents: fix sometimes missing first task
- Device Maintainers: add M7 maintainer
- Device Maintainer: add Droid RAZR maintainer
- Don't show "Eject card" if the card is not accessible
- Audio: Fixed system/call stream volume can't adjust with HS connected.
- Fix "Email" App data lost when screen rotated.
- Fix a number of aapt warnings.
- Settings: Make mobile settings a first-class citizen
- Update device source -i9100-i9300-n7100: fixed lot of bugs
- Fix very long app_name crash.
- RR Tools French translations - translated by Pierre Delfosse
- Included lot of sound and media updates
- Included CyanogenMod source updates and fixes
Link for 5.0.9
Changelog for 5.0.9
- Fix android run time (ART)
- phone-fix flip action call options
- Totally fix for system ui fc
- Add NEW Ringtone C.Y.E-Resurrection - set as default
- Add RR tools Russian translations translated by Aleksashik
- settings: Add blacklist provider permission
- allow Mock SMS
- Separate Change Encryption Password Entry
- Use SSL for submitting stats
- Do not enable Camera widget on non-camera devices
- Update 'Wi-Fi display' string to 'Cast screen'
- SoundSettings: Assigning a null to an unnecessary variable
- update device maintainers nexus 5-nexus 4-i9305-Galaxy Note III hlte
- fix slider torch checkbox
- Settings: Apply Processor settings to all cpus
- New Theme Engine
- Runtime resource overlay, iteration 2
- New command line tool 'idmap'
- Remove T-mobile items not used by new theme engine
- Wallpaper Overscroll and Transparent NavBar
- SysUI: Use LocationController from status bar service for GPSTile.
- Set some GC parameters only for dalvik
- CM11 Themes: Take into account ALL res/xml dirs
- Fix the value type of def_noise_suppression
- SysUI: Don't recreate controllers.
- SlimRecents: user configurable default expanded mode
- Frameworks: SlimRecents pass gesture detector to the cardslistview
- Frameworks: add 1dp more bottom paddingcore: Add support for Luxembourgish
- Frameworks: SlimRecents: Make expanded layout pretty
- SysUI: Don't recreate controllers.
- Update settings after recreating status bar.
- Suppress String resources build warnings
- Keyguard: Fix problem where PhoneWindowManager waits for keyguard to drawable
- Keyguard: We need to ensure that keyguard is showing as well to set the token
- SlimRecents: Adress the 50ms touch unsresponsive issue
- base: Fix screen on stats after a boot
- Restore pre-KitKat permissions to external sd for all apps
- Don't make isSafeMode a field on the Zygote class.
- [video] : added mime-type for mov files
- Fix LTE tile
- LTE toggle support
- Solve three memory leaks related to PatchCache
- Prevent Lockscreen album art from activating FLAG_KEEP_SCREEN_ON
- Do not show Home behind full screen activity
- core: Add support for Luxembourgish
- hammerhead-hh: Better scaling values
- hammerhead-enable multiuser
- hammerhead-hh: Collapse primary audio outputs
- hammerhead-Make SYSTEM owner of cpu online files
- i9300- Camera2: Don't try to cancel focus messages when preview stops
- i9300- Switch back to the binary camera HAL
- Included lot of sound and media updates
- Included CyanogenMod source updates
Link for for 5.0.8
Changelog for 5.0.8
- New boot animation (thanx to therichieboy)
- Fix multi-user
- Live Volume Steps
- IME Animations
- Custom scroll mod
- Developer options: long press back to kill configurable timeout
- Pitch Black Theme for Calendar app
- Pitch Black Theme for Email app
- Quiet Hours: Add 4 state (off, timed inactive, timed active and forced on) support
- Settings: Integrate Voice+ into Settings
- Add T-Mobile and AT&T Galaxy S III maintainer Deliberate
- RR Tools Romanian translations - translated by Vlad Daniel Calin
- Bootanimation: Add continuous splash support
- Revert back to CM camera for now - Devices like i9100:fix for front video camera issues - install 5.0.7 camera app
- WallpaperCropper: Fix crash when set .gif as wallpaper
- Lockscreen Blur: Disable if music is playing
- Settings: Fix Quiet Hours Tile long press action
- Add theme support to Ringtone and Profile pickers activities
- Contacts: Holo Light ringtone picker dialog
- Lockscreen Notifications: some fixes
- Update some translations
- SystemUI: add Indonesian translation
- Base: forward port DC-HSPAP support from cm-10
- Base: Proper security labeling of multi-user data directories.
- Base: Fix the random UI corruption
- Halo: Modify behavior
- Halo fixes
- Fix Floating window bug
- Frameworks: do not kill favorite recent apps
- Frameworks: notify arrayadapter early that data has changed on clear all
- Frameworks: fix possible NPE + missing expandable panel
- Base: Mirroring layout on RTL languages
- Contacts: Add support for import contacts to local phone storage
- Galaxy S2: Fix the inability to mount/unmount sdcard
- smdk4412: update fimc_capture and sr130pc20 cam driver
- smdk4412: update camera resources
- smdk4412: update batteryCurrentNowPath
- i9300: audio: bring back removed microphone fix
- i9300: audio: fix input device selection
- Included lot of sound and media updates
- Included CyanogenMod source updates
Link for v5.0.7
Changelog for v5.0.7
- Updated kernel to Render's 3/22 TWRP version (thanks to RenderBroken for the continued support!)
- Smart Pulldown
- Add evening time for notification header
- Add Device Maintainer - Galaxy Ace 2
- SystemUI: Resurrection design pulldown
- Phone: Smart Phone Call
- Developer Options: Allow disabling of FC dialogs
- AccountPreference: Sync in progress accessibility status
- LockClock: change font style
- Frameworks: Fix linked volume does not persist after reboot.
- Slim Recents: make it RTL/LTR aware + scaling + lefty mode + add favorite mode
- Replace CM Torch QS tile pngs with pngs from Paranoid Android
- FaceUnlock: Check if faceunlock is disabled
- Make notification_header_bg a .9.png for better theming
- Fix for lockscreen rotation bug
- Update PB default wallpaper
- Fix F/C in TTS settings
- PB: update status bar close png
- Keyguard: Fix configuration change observer
- Fix to memory leak leaving WallpaperCropActivity.
- Fix progress of VolumePanel never refresh
- Remove unnecessary switchUser call
- NULL previous background bitmap upon changing wallpaper
- Hang off call by power button while screen is on
- [ScreentShot]: change the implementation of get image file size
- Squash: Memory leaks, NPEs, races and optimizations for base
- Detach engines before destroying WallpaperService
- Fix SystemUI FC on boot
- App sidebar: some improvements
- n7100: fix static in video
- n7100: audio: updates from replicant
- n7100: audio: updates for hal
- Add RR tools Arabic translations translated by Cooper DMselecto
- Add RR tools Italian translations translated by Volpe92
- Resurrection Developers: allow twitterHandle to be null
- Included lot of sound and media updates
- Included all CyanogenMod source updates
Link for v5.0.6
Changelog for v5.0.6
- Systemui:fix notification panel layout overlap
- Add new halo switcher button on notification pulldown
- Slim recent fix home button lag
- Frameworks: slimrecents fixes update
- SlimRecents: go more inline with AOSP and add menu + new googly shortcuts
- SlimRecents: keep IME keyboard alive due recent is showing
- Slimrecents: call app details screen correctly
- Slimrecents: go kitkat + style tweaks and follow googles color sheme
- PackageManager: Fix reconnection logic in Installer.
- update notification header images
- SystemUI: Update Ringer tile code.
- Lockscreen background style
- FaceUnlock: Check if faceunlock is disabled
- Lockscreen: Faster wake up from the deep sleep to lockscreen
- Dialer Hide Titlebar while loading InCallUI
- Updated CM File manager
- SystemUI: Set Status bar opaque during drawer pulldown on tablets only
- SystemUI: fix calculating alpha for back button in landscape mode.
- settings : Deactivate stock recents options on selecting Slim Recents
- update all xml & values OPS resources
- Fixed sd card media scan and lag issues
- Add rr tools Hindi language -translated by the-dagger
- Add rr tools Norway translations - translated by Thomas Åsnes
- Add rr tools Danish translations - translated by David Kallestrup
- Add rr tools Malaysian translations - translated by Hasif Hashem
- Fix in Danish language fc when tap on HW buttons options
- Settings/Wifi: Add support for Ad-hoc (IBSS) networks
- Fix resource IDs being added to the android namespace
- Settings: Fix AppOps arrays
- Kernel : update local version to RESURRECTION
- i9300 & n7100: audio: fix battery drain after phone call
- i9300: audio: update hal
- i9300: audio: hal update
- Return to slim camera ( more stable )
- Merged latest fixes and commits from CyanogenMod
- Many more fixes and updates...Enjoy this f**** sexy,smooth and rock stable release!
Link for v5.0.5
Changelog for v5.0.5
- Completely redesigned Resurrection Tools
- Added the new Slim Recents (can be toggled back to stock recents in Resurrection Tools)
- Added Slim's Notification Reminder feature
- Added Device maintainers
- Added an Xposed Setting in Resurrection Tools (it will show up only if Xposed-Installer is installed)
- Added Suspend Actions
- Added Wakelock blocker
- Added a new Location Tile - Port from SlimROMs (thanx to rodman01)
- Updated Resurrection Walls to v7.0
- Added Toast Animation settings
- Resurrection setup-switch to holo theme
- Added an option to toggle status bar visiblity on lock screen
- i9082: Add multi-user support
- Added an option to disable camera sounds
- switch back to cm camera
- Base: fix icon overflowing with centre clock
- Base: Added support for Lightbulb app from Paranoid Android
- SystemUI: open quick settings panel if there are no notifications
- SystemUI: Fix displaying of user photo.
- Settings: Added more options in AppOps
- Settings: SD card partition info menu
- Added day and week on data usage cycles
- Enabled status bar brightness control for tablets
- Base: Do not force notification vibrations in Vibrate Mode
- Base: Decrease volume panel transparency
- VolumePanel: Don't force navigation bar
- Improved Pitch Black (removed red buttons on holo light theme)
- fixed issue system background not changing on installed custom themes
- Bluetooth: Added new key to store last connected A2dp Sep type
- SystemUI: Only show H+ if config_hspa_data_distinguishable is set
- Base: Fix graphics corruption caused by HWUI caches
- Fixed upgrading from forward-lock application to system application
- Updates to Privacy Guard
- InCallUI: fix non intrusive incallui black on black font
- SF: Determine if virtual display can use HWC for composition
- SF: Fix invalid reduction of transparent region from a layer.
- AV: add .mov extension support
- AV: fix mute issue for h.264 and MPEG4
- AV: add Sony camera parameters
- AV: alot of other updates and fixes
- Merged latest fixes and commits from CyanogenMod
- Many more fixes and updates...
Link for v5.0.4
Changelog for v5.0.4
-Add facebook sync
-Tile style options -colors - pressed colors - transparency
-Updated Resurrection Remix logo in updater-script
-Show default profile name if no profile exists
-Show owner info creation if no owner is set for UserTile
-Custom clear recents button options
-activated performance controller CPU frequency options
-Upgrade Network Speed Indicator
-Camera-Fix Power Shutter Exception
-Fix detection of 0.3 hwcomposer
-Graphics:Add error check when create GraphicBuffer
-n7100 add back multi user
-smdk4412 kernel: update Boeffla Sound 1.6.5
-fix i9100 storage issues
-fix for 3d games sound issues
-Fix the memory leak in Settings
-improved Camera and media updates
-MediaRecorder: Add pause interface
-VideoView: Implement the suspend/resume operation in VideoView
-Add 2 APIs (suspend/resume) in MediaPlayer
-custom Animations-fix black space with enter only and translucent reverse exit
-Show panels on lockscreen in expanded desktop mode.
-Fix the issue that the top of fullscreen dialog is clipped away
-Set expanded desktop through profiles
-UserTile : Check if profile has a photo
-NumberPicker: Don't filter Bengali-Indic characters
-Block application install from unknown sources through adb
-add STREAM_DTMF to stream affected by ringer mode
-Set slient persist property according to ringer mode
-Speed up boot dex opt on multicore devices.
-Change the default colors for progress bar
-Add reset to progressBar
-Fix a little derp for ProgressBar
-Clarify Notification PG perm
-fix android browser bookmarks sync
-Fix lockscreen rotation
-Fix crash on theme change
-Fix too long ON/OFF strings
-BT: Multi HF support in Settings App.
-AppOps: Modify Chinese string for Camera as MIIT's suggestion.
-lockscreen options: remove security preference
-RR Tools: move custom progress bar to misc
-update resurrection tools png
-abour rr : use correct email for avatar
-Expanded Desktop : Fix Left handed navbar during landscape mode
-fix notification header not updating automatically
-fix notification header image timings
-A background started service is removed from mStartingBackground when timeout
-Fix, MountService now only sends one onShutDownComplete
-Finish fixing Zygote descriptor leakage problem
-Fix a programmatic smooth scroll bug
-fix volume panel more button transparency
Hey hey! Alright! New toys!
Gonna have some free time tonight. I'll download and try it out!
"... one thing I can tell you is you got to be free..."
Does the front camera video recording work if so will test out. Not sure I want to rebuild phone again so soon if not
Sent from my SGH-I777 using Tapatalk
---------- Post added at 10:54 AM ---------- Previous post was at 10:54 AM ----------
Thank you for bringing this to us
Sent from my SGH-I777 using Tapatalk
david72262 said:
Does the front camera video recording work
Click to expand...
Click to collapse
Just tested it, it works for me. Recorded 5 seconds of my face, so forgive me for not posting that as proof!
SteveMurphy said:
Just tested it, it works for me. Recorded 5 seconds of my face, so forgive me for not posting that as proof!
Click to expand...
Click to collapse
thanks just downloaded will test out today trying to download the updated gapps from a couple days ago its being a pain
Thanks SteveMurphy for giving life to our i777
Sent from my SGH-I777 using xda app-developers app
pepe100 said:
Thanks SteveMurphy for giving life to our i777
Click to expand...
Click to collapse
You're welcome, but please go to the original thread and thank/support westcrip for allowing this port!
SteveMurphy said:
You're welcome, but please go to the original thread and thank/support westcrip for allowing this port!
Click to expand...
Click to collapse
Done.
very nice like the pitch black setting
david72262 said:
Done.
very nice like the pitch black setting
Click to expand...
Click to collapse
Pitch black settings!? Ohh this sounds promising. Can you post some flattering screen shots? :sly:
"... one thing I can tell you is you got to be free..."
razen_kain said:
Pitch black settings!? Ohh this sounds promising. Can you post some flattering screen shots? :sly:
"... one thing I can tell you is you got to be free..."
Click to expand...
Click to collapse
Here's a quickie...
SteveMurphy said:
Here's a quickie...
Click to expand...
Click to collapse
Nice! What's it got there under resurrection tools? Ui mods?
"... one thing I can tell you is you got to be free..."
razen_kain said:
Nice! What's it got there under resurrection tools? Ui mods?
"... one thing I can tell you is you got to be free..."
Click to expand...
Click to collapse
Oh yes, and that's putting it mildly. Customizing will keep you busy for a long time. I've been on it for three days and I'm still tinkering!
SteveMurphy said:
Oh yes, and that's putting it mildly. Customizing will keep you busy for a long time. I've been on it for three days and I'm still tinkering!
Click to expand...
Click to collapse
Sounds like fun! I had a wreck last week and I'm going to be laid up for at least next week with some fractures and deep contusions.
... now where did i put that twrp recovery...?
"... one thing I can tell you is you got to be free..."
razen_kain said:
Sounds like fun! I had a wreck last week and I'm going to be laid up for at least next week with some fractures and deep contusions.
... now where did i put that twrp recovery...?
"... one thing I can tell you is you got to be free..."
Click to expand...
Click to collapse
seems to work fine on cwm 6.0.4.5 recovery had a google stop error right after install but seems fine.
razen_kain said:
Sounds like fun! I had a wreck last week and I'm going to be laid up for at least next week with some fractures and deep contusions.
Click to expand...
Click to collapse
What!!! That's horrible, hope everything heals the way it should.
david72262 said:
seems to work fine on cwm 6.0.4.5 recovery had a google stop error right after install but seems fine.
Click to expand...
Click to collapse
I did this with slimkat (twrp based) and it did fine at first. Then it froze up and i couldn't boot into recovery. That's when i had to Odin back to stock here a while back and start over. Once i got it fixed i installed twrp recovery and everything was fine.
SteveMurphy said:
What!!! That's horrible, hope everything heals the way it should.
Click to expand...
Click to collapse
So far so good. I'm in a lot of pain and my knee was mangled up. It's in an immobilizer and I'm on heavy medication but they say i won't need surgery or anything. My chest and ribs are what's really killing me but i digress.... I'm excited to try this out. I'm curious, do you like this better than slimkat?
"... one thing I can tell you is you got to be free..."
It's different than Slim, in that it's bigger and has more customizations, but I've found it to be just as stable. I ran RR for a very long time back in the early ICS days, and it was a beast. I'm finding this one to be the same.
Get well soon, my friend.
Just to be clear, i don't need to flash a kernel after flashing ROM&gaps?
"... one thing I can tell you is you got to be free..."
razen_kain said:
Just to be clear, i don't need to flash a kernel after flashing ROM&gaps?
Click to expand...
Click to collapse
Correct; Renders' 1/25 TWRP CM kernel is included in the flash.

[ROM+KERNEL][CM/AOKP][4.4.4]Exodus - 2014-10-26 - BUILD-XII - The Last Stand

{
"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"
}
I WILL NOT BE RESPONSIBLE FOR ANY DAMAGE CAUSED BEFORE, DURING, OR AFTER FLASHING THIS. YOU ASSUME ALL RESPONSIBILITY FOR ANY DAMAGE CAUSED. PLEASE READ, MAKE BACKUPS, READ SOME MORE, VERIFY YOUR BACKUPS, AND FLASH CAREFULLY!!!
ROM Features
Android KitKat 4.4.4 (KTU84Q)
Based on CyanogenMod & AOKP, with pure AOSP elements
Removed Superuser & rooted with SuperSU
CM Theme Engine + optimizations
Titanium Backup(free) built-in
Open-source Performance Control integrated
Fast Charge support!
Original Google Nexus bootanimation
App Circle Sidebar
Notification Shortcuts
Notification Reminders
Tinted System Bars
Customizable Status Bar + Battery Icons
Omni's Battery Saver Mode
Customizable Battery Bar
AOKP's ROM Control for customization
CM's Profiles
Floating Window Mode
HOVER
HALO
PIE Controls
PEEK
Custom Lockscreen colors
Gesture Anywhere
CM's Protected Apps
Removed CMAccount,CM & AOKP Anonymous stats
SwagPapers & CMWallpapers inside
Un-needed features stripped out
ADB Authentication disabled by default (Just for debugging purposes, but I'll re-enable it in the next couple of builds)
Slightly modified kernel, codenamed "Exodia", with Intelliactive & Intellidemand governors, Simple I/O scheduler, with some optimizations
Other stuffz I can't remember right now.
ROM Control is property of Android Open Kang Project, or AOKP, and I take no credit for it's creation.
Download: Exodus - 2014-10-26- BUILD- XII - HAMMERHEAD - FearlessTechs.net(my site, don't be alarmed!)
Mirror - AndroidFileHost - uploading​
Creditz, Propz, & Greetz
Mrs. Apocalypse
Google
AOKP (Android Open Kang Project)
CyanogenMod
ParanoidAndroid
SlimRoms
ChameleonOS
OmniRoms
Beanstalk
LiquidSmooth
AICP
Team Whiskey
faux123
owain94
Moscow Desire
Chainfire
0xD34D
....and most importantly you, the users!
XDA:DevDB Information
[ROM+KERNEL][CM/AOKP][4.4.4]Exodus - 2014-10-26 - BUILD-XII, ROM for the Google Nexus 5
Contributors
Mr. Apocalypse
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.4.x
Based On: CyanogenMod,AOKP,AOSP
Version Information
Status: Stable
Current Stable Version: 12
Stable Release Date: 2014-10-26
Created 2014-07-24
Last Updated 2014-10-26
Changelog & Kernel Source
(CM) = CyanogenMod
(AOKP) = Android Open Kang Project
(Omni) = OmniRom
(Slim) = SlimRom
(BS) = Beanstalk
(PA) = ParanoidAndroid
(AICP) = Android Ice Cold Project
(DU) = Dirty Unicorns
(Name) = Nameless
Code:
10/26/14 - Build XII
[LIST]
Updated SuperSU to 2.16
[*](Omni): Add option to allow tinted color change window shade panel
[*](Omni/AICP): Tinted Bars fixes
[*](Omni): Improve tinted color logic code
[*](Slim): Clean up heads up text color code
[*](CM): Update SET_ACTIVITY_WATCHER protection to signature|system
[*](CM): PackageManager: Add optional prelaunch check step
[*](CM): Provide non-interactive APIs to BackupManagerService
[*](CM): Support full size application screenshots
[*](CM): extmediaplayer: miscellaneous fix
[*](CM): Fix memory leak in nativeDecodeFileDescriptor
[*](CM): AudioService: Fix monitorRotation for landscape applications
[*](AICP): Disable ticker preference
[*](CM): Add preference for enabling root access [Apps and/or ADB]
[*](AOKP/AICP): Density Changer
[*](CM): Open app when clicking on icon in App Info screen
[*](CM): settings: Avoid NPE in NfcTrigger when device doesn't support NFC
[*](CM): Development: Root for apps is unavailable if the su daemon isn't running
[*](CM): Profiles: fix expanded desktop settings not applying
[*](CM): Settings: Fix profiles volume override summary.
[*]Added Exodus logo in About Device
[*]Themes: Force recompiling common resources when scanning theme
[*]Update device repos to match CM's
[*]Update audio & display drivers to match CM's
[/LIST]
10/13/14 - Build XI
---------------------
[LIST]
[*]Updated SuperSu to v2.13
[*]Fixed Statusbar time & date options
[*]Fixed crash when theme didn't have a thumbnail preview
[*]Fixed crash when user tries to access Battery options in Settings
[*]Fixed Trebuchet crash on Chinese languages
[/LIST]
10/12/14 - Build X
---------------------
[LIST]
[*]Added "eXodus" ASCII-Art to updater-script
[*] Disabled SystemUpdateService to reduce battery drain
[*](Omni/AICP): Tinted System Bars (Dynamic System Bars)
[*](Omni/AICP): Allow to determine dominant color for notifications icon [Tinted Mod]
[*](AICP): Update main navbar icons with proper material design - by Oliver Bien
[*](Omni/AICP): Tinted: Navbar color change fix
[*](Omni): Support showing carrier/provider logo on statusbar
[*](CM): frameworks/base: Fix delay in sending AUDIO_BECOMING_NOISY intent
[*](Slim):fb: add Battery Styles the new way 1/2
[*](Slim/AICP):FWB: Fix Hide Battery icon from RC
[*](Slim):fb: show percentage on icon in bold
[*](Slim):Fix battery icon with percentage showing "!" and percentage only color when under 14%
[*](Slim):fb: add bottom margin to stock default battery icon
[*](Slim):Frameworks: Fix memory leak + cleanup
[*](DU): Custom Status Bar Color
[*](AICP): Fix clock disappearing with custom statusbar icon tinting
[*](AICP): Port of Team Baked's 4.3 base color tile mod
[*](Slim): Smart (notification) pulldown
[*](Slim): Frameworks: Notification Reminders
[*](Slim): Frameworks: Notification Reminder Interval && Fixes
[*](Slim): SystemUI: Notification Reminder New Layout && Fixes
[*](Slim): SystemUI: Notification Reminder - Update Reminder
[*](Slim): fb: Add Wifi name to notification drawer when Wifi is connected
[*](Slim): FWB: Port all carrier label options
[*](DU): Changed contextual notification panel headers
[*](DU/AICP): Add evening time to header
[*](Slim): Frameworks: apple can do...we can do as well
[*](CM): Proximity : Check proximity flags only if from native
[*](DU): Add ability to play audio to Boot Animation
[*](Slim/AICP): Notification Shortcuts
[*](DU): Over Scroll Effects
[*](CM/AOKP): advanced reboot: add soft reboot option
[*](AICP): Add reboot menu action for AwesomeAction
[*](AICP): Add PowerMenu AwesomeAction
[*](AICP): Add PowerMenu toggle
[*](AICP): Update Roboto fonts to Android L versions
[*](PA): Add support for PEEK app
[*](Name): On The Go Mode
[*](Name): On the Go- Allow toggle between front & back camera
[*](Name): On the GO - Several fixes
[*](Name): On the Go - Overlay status & navigation bar
[*](Name): On the Go - Change the way of changing camera mode
[*](CM): Settings - refactor Profiles to be more user friendly
[*](CM): Settings: Check if NFC is supported prior to adding to pager
[*](CM): Settings: cleanup new profiles UI
[*](AOKP): Fix spelling error in ROMControl/lockscreen strings (beeing -> being)
[*]Removed Battery Icon styles from ROMControl - Settings handles it now
[*]Relocated Battery Saver Mode to System
[*]Cleaned up User Interface section in Settings
[*]Move App Circle Sidebar config to it's own class/section
[*]Give HALO option an alpha slider
[*]Themes: Let ThemeService handle all theme processing
[*]Fix SystemUI crash on QuickTiles
[*]Fix Power Menu when Profiles are disabled
[*]Updated a heap of translations
[*]Under the hood speed tweaks
[*]Exodia: updated to r5 - Kexec patched for MultiROM
[/LIST]
10/1/14 - Stable 9
---------------------
[LIST]
[*]Removed SlimLauncher
[*]Re-organized custom settings in Settings app
[*]Added new System section in Settings
[*]Tweaked User Interface and Notification icons
[*](Slim): Heads Up on bottom
[*](Slim): SlimSizer - System App Remover in Settings
[*](ChaOS/AICP): PacBusyDialog for boot message & power dialogs
[*](AICP/PA): Launch Heads Up in Floating Window
[*](Slim): Heads Up Background, Text Color & Transparency
[*](AICP): Use Android L navbar icons by default
[*](CM): App Widget:Make widget update quickly
[*](AICP): Vibration Options
[*](Omni): Disable Force Close Dialog option
[*](CM): SystemUI: Unbreak the planet
[*](Slim): Frameworks:clean up the AOSP tablet icon mess
[*](CM):WallpaperCropper:respect max wallpaper width
[*](Omni):Statusbar clock on lockscreen
[*](AICP): Force Expanded Notifications
[*](AICP/BS): Heads Up: Option to disable in lockscreen
[*](CM): Move idmap to frameworks/base
[*](Slim): Heads Up: Always show in expanded mode
[*](Slim): Heads Up timeout
[*]Themes: Only process themes that are applied during boot
[*]Updated translations
[*]Exodia: Update to r4 - Updated to match CM's
[*]Exodia: Tweaked Intelliactive & Intellidemand governors
[*]Fixed Trebucket crash when some themes are applied
[*]Fixed Contacts crash if header is themed on some themes
[/LIST]
9/21/14 - Stable 8
------------------------
[LIST]
[*](Slim): Added Slim Launcher
[*](Slim): Added Chamber Of Secrets
[*](PA): PIE - Torch target (for hammerhead)
[*](PA): PIE - Screenshot target
[*](???): Added Enable/Disable Camera Shutter sound
[*](AICP): Added Music Toggle
[*]Fixed SystemUI crash if Torch is missing when triggered
[*]Fixed InCallUI crash if user opens call w/ Floating Mode
[*]Fixed Settings crash if SuperSU is removed and re-installed
[*]Fixed Trebuchet crash when widgets are resized sometimes
[*]Fixed Trebuchet crash if theme changes it's icon
[*]Updated a lot of translations
[*]Removed un-needed libs leftover from CM
[*]Clean-up alot of un-used code
[*]......ummm.......thats it for now.
[/LIST]
9/14/14 - Stable 7
-----------------------
[LIST]
[*]Added back Reboot Toggle (can be added from ROM Control)
[*]Fixed issue that caused Trebuchet to crash w/ some Themes
[*]New User Interface icon for Settings
[*](PA):Floating Windows Mode w/ Multi-Tasking
[*](PA):HALO w/ Color, Size, misc, settings
[*](PA/BS):App Circle Sidebar - Floating window support
[*](DU):Wakelock Blocker
[*](PA): Store Dialpad State
[*](PA): Launch Recents as Floating Window
[*](PA): Launch floating window from Notification panel
[*](PA): HOVER
[*](PA/BS): HOVER Settings - Notification timeout, Exclude low priority,etc.
[*](PA): HOVER Theme Engine compatibilities and some resources tweaks
[*](PA): HOVER: Keep app when opening floating window from recents panel
[*](PA): Improve one finger expanding forced handling
[*](PA): HOVER: Match notification width on tablets too
[*](PA): HOVER: Ensure to clear after reparenting all notifications
[*](PA): HOVER: Fix notification content not being updated
[*](PA): HOVER: Don't process and/or show foreground app notifications
[*](PA): HOVER: Respect screen limits when adding view
[*](PA): HOVER: Don't treat touch outside event as true if is animating
[*](PA): Blacklist Interface for Hover,Peek,FloatingMode
[*](PA/AICP): PIE Control
[*](PA/AICP): PIE Colors
[*](PA/AICP): PIE Targets
[*](PA/AICP): PIE Toggle (can be added from ROM Control)
[*](CM): [Trebuchet] workspace into a transition prepare state before animating into all apps
[*](CM): [Trebuchet] Fix crash that causes breaks when adding widget shortcuts to the Workspace
[*](CM): [Trebuchet] Fixes bug with extra empty screen staying on Workspace when a shortcut is dragged to the AppInfo target
[*](CM): [Trebuchet] Re-add Fade side pages and Page outline options.
[*]Themes: Update provider with components that were applied
[*]Themes: Load correct common resources
[*]ActivityManagerService: Penalise large apps going to background
[*][ActivityManager] Fix race condition in pss collection
[*][ActivityManager] Finish the failed-to-pause activity
[*][ActivityManager] Fix ServiceRecord leakage
[*][ActivityManager]Ensure provider external access count will be released.
[*][ActivityManager]Fix NullPointerException when dumping ContentProviderRecord.
[*][ActivityManager] Prevent provider creating twice.
[*][ActivityManager] Fix index out of bounds when updating next pss time
[/LIST]
9/07/14 - Stable 6
------------------------
(PA): CPU Info overlay
(CM): Brought back CM's Expanded Desktop option
(Omni):eek:ption to hide power menu while locked
(Omni): Hide Power menu while locked
(CM): Statusbar clock and Date actions
(CM): Expandible volume panels
(CM): Allow Expanded volume panels to be set via Profiles
Update Qualcomm media driver to match CM's
Update Qualcomm audio driver (MSM audio HAL) to match CM's
Update Qualcomm display driver to match CM's
Put User Interface stuff in it's own preference
Put Notification stuff in it's own preference
Take Display Settings back to stock(ish)
Trebuchet:Settings adapter should use the position and partition values
Trebuchet:Fix AppInfo drop target getting cut off when search bar is off
Trebuchet:Fix for workspace showing outline after live settings changes
Trebuchet:Fix spacing issues on devices with/without nav-bar in overview settings panel
Trebuchet:When reloading dynamic grid, reload restore page first
Trebuchet:Fix: Sort apps before opening AppDrawer to reflect the most recent counts
Trebuchet:Fix HideIcon behavior in Folders
Trebuchet:Fix - Workspace background gradient
Exodia: Update to r3
Exodia: Mass update to match CM's qcom commits
Themes: Only kill launchers if overlays or icons changed
8/28/14 - Stable 5
-----------------------
[LIST]
[*]Now allows up to 8 lockscreen targets like tablets (for hammerhead)
[*]Fixed wrong bg bug in Contacts/People with some themes applied
[*]Fixed black screen bug on some themes' bootanimation
[*]Fixed bug that caused SystemUI to crash when nav bar is themed on some themes
[*](Omni/BS): App Circe Sidebar w/ configurable trigger
[*](CM): Proximity Wake
[*](CM): PowerManager : Make proximity check opt-in
[*](CM): Filter Spam Notifications
[*](Omni): ADB Paranoia Mode
[*](CM): Maximize widgets on lockscreen
[*](Slim): Lock before unlock
[*](BS/Slim): Customizable Battery Bar!!!
[*](BS/AICP):Peek wake timeout && configurable timeout
[*](BS/Omni): Battery Saver Mode
[*](Omni): Add time-context headers to the notification header
[*]Themes: Add continuous splash support
[*]Themes: Avoid NPE when setting text in TickerView
[*]Themes: Allow clearing the wallpaper and ls wallpaper
[*]Themes: setUserRequired(false) when updating audibles
[*]Themes: Fix setting wallpaper from a legacy theme
[*]Themes: Track NotFoundException on app launch failure
[*]Themes: Remove listener if exception is thrown
[*]Themes: Fix native crash in libandroidfw
[*]Under the hood speed fixes!!!
[/LIST]
8/17/14 - Stable 4
-----------------------
[LIST]
[*]Fixed android.process.media crash on Polish language
[*](ChameleonOS): Gesture Anywhere!!!
[*](Slim): Custom Carrier Label(Lockscreen & StatusBar)
[*](Slim/CM): User Configurable Rotation (0,90,180,270 degrees)
[*](Slim/AOSPAL); Custom Lockscreen Colors[Lock image, targets, text, dots!!]
[*](AOSPAL/Slim/CM): Autobrightness configuration UI
[*](AOKP): Gesture Lockscreen
[*](PA): PEEK!!
[*](PA): Integrate SuperSU into Settings (as long as it's still installed)
[*](Slim): Advanced low battery indicator options
[*](Slim): Customizable notification background (custom image or color)
[*](CM): Power connect/disconnect notification support
[*](CM): Themes:Build icon cache when applying icons
[*](CM): Add incoming call style configuration
[*]Themes: Build icon cache when applying icons
[*]Themes: Add column for tracking when a theme was installed
[*]Themes: Add navbar background preview to ThemesContract
[*]Themes: Make sure ThemeConfig is non-null when loading resources
[*]Themes: Themes: Pass resource IDs instead of bitmaps
[*]Trebuchet: Don't show protected apps options in restricted profiles.
[*]Trebuchet: Draw the dynamic grid image dynamically
[/LIST]
Stable 3 - 8/7/14
---------------------------------
[LIST]
[*](CM/Slim):CM/SlimRom's Privacy Guard
[*](CM):CM's Protected Apps
[*](AOKP):SystemUI-4G/LTE icon toggle
[*](AOKP):Mobile Network Toggle
[*](AOKP):Add 3G-Only Toggle
[*](CM):Custom Lockscreen Target support
[*](CM):Don't show protected apps options in restricted profiles
[*](AOKP):Make notification list bg themeable
[*](AOKP):DocumentsUI: Allow installing APKs from internal storage
[*](AOKP):DocumentUtils: Properly check the type of Document
[*](AOKP):DocumentsUI: Differentiate USBs from SDcards
[*](AOKP):DocumentsUI: Allow installation of apps from external storage
[*]Under the hood updates and fixes...too many to list!
[/LIST]
Stable 2 - 7/27/14
----------------------------------
[LIST]
[*]Updated build to KTU84Q
[*]Fixed Wallpaper set crash
[*]Re-stabilized and merged CM's Profiles
[*](AOKP):Create surface based upon panel orientation[bootanimation]
[*](AOKP):DialogFragement: Add null pointer check for mDialog for protection
[*](AOKP):Bluetooth: Avoid fd leak for Bluetooth server socket connections
[*](AOKP):Fix HeadsUp toggle doesn't change
[*](CM):Tunning max allowed background services
[*](CM):wlan: Fix to handle the failure status on supplicant start
[*](CM/AOKP):Themes: Add helper methods for creating complete component maps
[*](AOKP)Themes: Find wp asset when APK has dir entries
[*](CM/AOKP):Themes: Add STYLE_THUMBNAIL to PreviewColumns
[*](CM):wifi: Disable the network based on the Deauth reason code.
[*](CM):Frameworks: Fix ap list issue while wifi turns on
[*](CM):Show submenu from menu list on hardware MENU key press
[*](AOKP):Audio: SetForceUse config check in AudioService
[*]Exodia:update to r2
[*]Exodia:Add faux123's powersuspend
[/LIST]
Stable 1 - 7/23/14
------------------------------
Initial release
Kernel source for Hammerhead​
F.A.Q. - Frequently Asked Questions
Q: What is Exodus?
A: Exodus is my personal combination of the best of both worlds. CyanogenMod features and AOKP features, merged together with AOSP elements.
Q: Do I need to flash GApps?
A: If you did a factory reset during flashing, then yes. If you did a dirty flash then most likely no.
Q: Which GApps do you recommend?
A: To each his own. I use the regular GApps that CM hosts on my Nexus 7 2013 and PA GApps on my Nexus 5. Both works really well.
Q: What is Exodia?
A: Exodia is my personal kernel that comes with Exodus. It is a minimal MOD kernel that is based on CM's stock kernel. The main MODs in Exodia include Intelliactive & Intellidemand governors, Simple I/O scheduler, Fast Charge support, and a few optimizations.
Q: Can I use another kernel?
A: Yes you can, as long as that kernel is compatible with CM based ROMs.
Q: How often is a build released?
A; The plan is to release one every 7-10 days, depending on feature merges. There may be a few times a build may be late, due to compatibility issues, and lack of time (job related).
Q: Is this CAF or AOSP based?
A: This ROM and kernel is based from CM11. If CM11 is CAF based now, then Exodus and Exodia kernel is CAF based.
Q: Why can't I change the incoming call style anymore?
A: There is a bug present that puts the call buttons behind a transparent navigation bar during an incoming call. This only happens when Fullscreen is selected in that option. It also was there AFTER I removed the option and functions. For now, the option is there but I made a few changes. Until I completely fix the bug, that option is automatically set to Classic, then the preference is locked to keep the user from changing it.
1st . tight user name
2nd. Awesome ROM features
3rd ........great base of a ROM ....
Sent from my Nexus 5 Unchained using XDA Premium 4 mobile app
Definetly i need and i have to try this project..thanks for share it!!!
Looks right.. Thanks for your work..
Sent from my Nexus 5 using XDA Premium 4 mobile app
Mr Apocalypse!! Thank you Brother for the new rom!! Ive been feening to slam some new dope into my phone arm and i appreciate the fat sack a crack right here!! Im maxxing out my Thanks on you today kind Brother!
Cheers!
EDIT: i just downloaded the rom and laid back in this chair. Im about to pull out my twrp syringe and slam this dope!! ....aaaaaannndddd puuushing.. thanks again brother im about to reboot...
Sweet!!! More goodness to flash
sent from my Rasta Nexus 5
Thank you all for the warm welcome. Let me know how the ROM and kernel works out for you guys.:fingers-crossed:
Cool dloading now!
Sent from my Nexus 5 using XDA Premium 4 mobile app
Definitely this rom its so out of this worls...like it...till now two weirs thigs 1. Watching a video on youtube became to blink and with the image in green all the screen 2. Google Chrome sometimes when i was reading something on xda the half screen became white ... Im using it via multirom
Dr.Pagan said:
Definitely this rom its so out of this worls...like it...till now two weirs thigs 1. Watching a video on youtube became to blink and with the image in green all the screen 2. Google Chrome sometimes when i was reading something on xda the half screen became white ... Im using it via multirom
Click to expand...
Click to collapse
Hmm, that sounds weird. Anyone else having this problem?
Sent from my Nexus 5(hammerhead) using XDA Premium!
Mr. Apocalypse said:
Hmm, that sounds weird. Anyone else having this problem?
Sent from my Nexus 5(hammerhead) using XDA Premium!
Click to expand...
Click to collapse
Just happened once...so randomly that maybe its better to forget my post still perfect
Mr. Apocalypse said:
Hmm, that sounds weird. Anyone else having this problem?
Sent from my Nexus 5(hammerhead) using XDA Premium!
Click to expand...
Click to collapse
Downloading now!! Feedback tomorrow!! Thank you!!
Hey man can I get that wallpaper lol
InflatedTitan said:
Hey man can I get that wallpaper lol
Click to expand...
Click to collapse
Hell NO!!!!
Lol, jk. Here ya go. This is the original. (See attachment below)
Im loving this rom man, first time running cm based rom on my N5, running it with elementalx cm version.. its working nice till now, I also don't have the problems @Dr.Pagan has or at least I didn't notice them till now..
Good Job and thanks.
Downloading ...... report soon !!!! :silly:
I still see "Retire" on your name haha..
Hi, I try it and I report in few days...
Things are running real nice and smooth so far. Question though since it's CM related, is there any chance at getting the CM Autobrightness Adjustment settings in this rom or are they here and I'm just overlooking it?

[ROM]ResurrectionRemix v5.5.9 - Optimised [Z3C][LP 5.1.1_r26][05/12/15]

** NEW Optimised ROM build LP_5.1.1_r26 v5.5.9 (05/12/15) released **
There will be NO stock framework/app ports for this build - Sony have released AOSP Camera Framework so a proper implementation will be coming soon...​
{
"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"
}
Welcome to Resurrection Remix!
Resurrection Remix is based on CM12.1 with bits from SlimRoms, Omnirom, PA and original Remix ROM builds, plus proprietary features - Bottom line: The ROM is feature rich, allowing the user advanced customisation while retaining performance and minimising power consumption....
Special thanks to the CyanogenMod team, OMNI, PA and SlimRoms.
Credit to ViPER520 and zhuhang for the fantastic work on ViPER4android!​
NEW! Features​
ROM and Kernel built utilising custom UBER toolchains - UBERTC/arm-eabi-4.9.4 (latest patches 01/12/2015)
Optimised - Build, Framework, Core and Bionic
Latest stagefright updates (vulnerabilities patched)
ROM system resource usage is reduced, big performance improvements, increased battery life...
Navigation Bar
Enable/Disable Navbar
Navbar Ring Switch
Navbar Ring Targets
Navbar Button Customization
Navbar Dimensions(Portrait & Landscape)
Status bar
Brightness Slider
Enable/Disable Show Notification Count
Carrier Label
Carrier Label Switch
Carrier label Colour
Quick Pull-down Switch
Smart Pull-down Switch
Clock Customizations
Time & date
Clock Colour
Day & date Toggle
Centre Clock/Right Clock Choice
Battery
Battery Bar customization
Battery Icon Customization(circle/landscape/Portrait and more)
Battery % Text
Network Traffic Indicator
Theme Chooser
RR exclusive PITCH BLACK THEME!!
Animations
Toast Animations
List-view Animations
System Animations
Gestures
Gestures Anywhere Feature
App Circle Bar
Choose apps in App circle
Trigger Width
Trigger Height
Trigger Position
Recents Panel
Clear All button Switch
Clear All Tasks Switch
Clear All Button Location(Top right,Top Left,Top Centre,Bottom Left,Bottom Right,Bottom Centre)
Cclock Widget
CLock And Alarm Customizations
Weather Panel Customizations
Calender Events
Lock-screen
Lock-screen Short-cuts
Choose up to 5 Short-cuts
100+ Icons for Short-cuts
Notification Drawer
Weather Display Switch
Quick Settings
Choice to Add 20+ Tiles
Enable 2/3/4 Tiles per Row
Enable Disable Brightness Slider in Notification Panel
Advanced Location Settings Switch(Choose Battery saving/Device Only/High Accuracy Directly in Notification Panel)
Long-press Toggles to Enter Settings
Volume Buttons
Wake Up Device
Playback Control
Keyboard Cursor Control
Swap Buttons on Landscape mode
Performance Profiles
LCD Density
Expanded Desktop Mode
ViPER4Android FX v2.3.4.0 ***Set FX Compatible Mode to "Compatible"***
Heads Up Customizations
Over All Smoothness Improvements
Quick Unlock
Battery optimisation
ALL CM12.1 Features
SuperSU Integrated - Thanks to @Chainfire
SlimDim!
Custom kernel supporting customisation/tweaks
Lots of other stuff!
​
Installation Instructions
**NOTE: TWRP v2.8.7.0 is bundled with this ROM version (flashed to FOTAKernel)**
Download the latest build
Download SlimROM Gapps (Optional)
Make a nandroid backup
You can "dirty flash" (wipe system, cache and dalvik) if running a previous version of this ROM...
Coming from a different ROM, then a Factory Reset wipe is recommended
Flash ROM using TWRP recovery
Flash Gapps (Optional)
Reboot.
Enjoy!
Thanks to @moly82 & @House3272 for testing, and big thanks to @someone755 for being himself!​​
Changelog
25/10/2015 - Resurrection Remix Lollipop 5.1.1_r24 - v5.5.8
# Resurrection Remix- v5.5.9 Lollipop-5.1.1_r26
- Android 5.1.1_r24->5.1.1_r26
- Kernel Auditor Tile
- Add Option For 5 Tiles Per Row in QS
- *Include GCC version and Info (for Optimized Builds Only, See Note Below (for maintainers only)) *
- base: don't show reboot options for safe mode
- perf: Add support for additional power profiles
- SystemUI: update keyguard state when profiles disable keyguard
- FingerprintService: fix fingerprints disappearing
- Keyguard: fix fingerprint not starting after user switch
- SettingsProvider: load animation defaults into correct table
- Keyguard: Show backdrop when sim pin secure screen shown
- SystemUI: HeadsUp: Check if view isn't already in windowManager
- Fix crash if Exif-Tag buffer-length and component-count are both 0
- Update boosted audio files
- Fix NOT_RESTRICTED network capability and enforce it
- Don't mark NetworkRequests restricted when they don't have restricted caps
- base: get rid of android time class
- Listen phone state change
- Shell: Declare cyanogenmod WRITE for system and secure settings.
- Recents: Fix IndexOutOfBoundsException
- Settings: Add security level default string …
- Remove CM translations of security_patch …
- wifi Settings: Add a filter
- Settings : Update performance tile drawable reference
- HighTouchSensitivity : Add Settings preference
- settings: ensure we don't call isProtectedApp with an invalid reference …
- Settings: Made advanced reboot option avaliable from button settings.
- vendor: Remove instance of server=""
- Vendor: add opt-out for exFAT
- vendor: make cgroups files read-only for all users
- Merged All StageFright Patches
- Included All latest CM updates
- Improved Translations
- For Full Acitivity Track Github
# Resurrection Remix- v5.5.8 Lollipop-5.1.1_r24
- Fix systemUI NPE on landscape theme change
- telephony: Hack GSM and LTE signal strength
- QSTiles: Set number of tile columns
- PB: theming queue colors
- base: initialized context ContentResolver reference before use it
- Lights Modes: Avoid regular values updates
- Fix notifications tile
- Fix FC queue to media player notifications
-TRDSitch Black -> Update Colors For :
Dialer
Contacts
Mms
DocumentsUI
SystemUI
Settings
- TRDSitch Black : Fix Google Account Fc
- Fix Plenty Of Glitches
- Fix Dpi Issue When Landscape Mode is Activated
- Fix Navbar Ring Layout
- Fix Reboot Caused By Home Button During Screen Pinning
- Fixes For Battery Saver Warning Disabling
- Fix For Navbar Theme Resetting On every Boot
- Fix rotation tile animation
- Fix horrible warning on every systemui startup.
- Fix navbar switch
- Fix huge bounce-back in ListView when double-flinging
- PB: Dark theme for documents ui and other improvements
- PB :Improve sysmui dark material dialogs + bg color & fix light material font hex
- Update audio and zen drawables
- TRDS : Clean up resources and fix resolver glitch
- TRDSB: Change sysenui ripple effect color
- Add volume boosted ringtones
- Add live lock screen previews
- Window rotation: fix up sensor logic
- RotationPolicy: fix rotation toggle logic
- BatteryService: Prevent UUC scenarios at 0%
- Fix network stats logspam.
- SystemUI: Remove duplicated permission
- SystemUI: attach a queue to media player notifications
- Disable default blending when drawing color rect
- FingerprintService: synchronize access to clients
- Services : Ensure proximity check is taken into consideration
- Revert "Don't allow deleting last remaining fingerprint"
- Improve fingerprint management activity UX. …
- Settings: use consistent behavior after forgetting networks …
- Revert "Settings: clear dialog states when forgetting network" …
- Multiple LEDs : Illumination Bars support
- Settings: Fix RuntimeException in InputMethod Settings
- CMSettings: add notification play queue setting
- Includes All Updates and Performance Enhancements By CyanogenMod 12.1
- Merged More Translations
- For More Updates Visit Resurrection Remix Github
# Resurrection Remix Lollipop 5.1.1_r18 -> 5.1.1_r24 - v5.5.7
- TRDS: Exclusive Inbuilt PitchBlack
- Themed apps -
Framework
Settings
Systemui
Dialer
Contacts
MMS
Telephony
LockClock
ThemeChooser
OTACenter
OmniSwitch
- Heads up snooze
- Disable Lockscreen Media Art
- Lockscreen see-through & blur
- Settings: network activity indicators
- QS: long press expanded desktop tile for detail view
- QS: long press flashlight tile for detail view
- option to disable torch when the screen turns off
- SystemUI: configurable lockscreen rotation
- Systemui: Fix navigation bar layout
- Live lock screen support
- Settings:Lockscreen color >> Lockscreen Advanced
- Add live lock screen previews
- Add volume boosted ringtones
- Fix harware keys are not enabled
- Keyguard: Third party keyguard support
- Window rotation: fix up sensor logic
- Add config to show WiFi/data activity indicators
- Shorten first boot time by filtering dexopted apps
- SystemUI: fix switching from task manager to detailed view
- SystemUI: improve switching users
- Heads up snooze button : Expose button colors
- SysUI: Clean up objects when recreating statusbar
- SystemUi: Don't show cellular data tile on secondary users.
- fwBase : Disable lockscreen rotation by default
- SystemUI: improve circle battery
- SystemUi: Fix navbar actions & fix wrong switch logic
- Fix sound settings and fix for Msim devices default ringtone issue
- Settings : Fix profile action offset when changing orientation
- Settings : Don't show ringtone pref for non voice capable devices
- Hide the lift to wake option
- Clean up button settings
- Update display settings & add missing imports
- settings: fuelgauge: Always show screen on time
- Hide LCD density preference from secondary users
- Give OnTheGo a checkbox instead of switch
- carrier label : Fix ListPreference
- Updated Translations
- Includes All Fixes and Performance Updates From CM
- For More Info Track Github Activities
# Resurrection Remix Lollipop 5.1.1_r6 -> 5.1.1_r18 - v5.5.6
- Merge tag Android-5.1.1_r18 (Clean installation highly recommended)
- Clean recent task by shake
- Squashed On-The-Go mode
- On-the-go : Improve quick settings dialog
- Clean Up Lockscreen Colors
- Configurable lockscreen rotation Now Enabled
- SystemUI: Long Press Lock Icon Now Loads Up torch
- SystemUi: Fix navbar actions & fix wrong switch logic
- Fix navbar glitches on hardware button devices
- Turn navbar off as default
- Add option to disable scrolling cache
- Make all 14 font variants available to Weather
- FWB: Make all 14 font variants available to Statusbar Clock
- FWB: Statusbar clock font size
- Task Manager: Use one observer for changes, misc cleanup
- SystemUI : Navbar ring five targets
- Fix Weather Color icons Issue
- Recents: Delay cleanup of remaining tasks when dismissing
- Settings : Add Tunings Preference in Configurations
- Settings :Add Kernel Auduitor
- SlimShortcuts: Power menu
- SlimShortcuts: Restart SystemUI
- SlimShortcuts: Volume panel
- Actually show COS in shortcuts and show all other when COS is enabled
- Add Screen Sleep shortcut
- Fix up chamber and Torch shortcuts
- DocumentsUI: Move & improve CAF string
- IMS: revert: ims: More backwards-compatibility stuff
- IMS Connection Capabilities Update
- IMS: Allow add participant with normal IMS call.
- IMS: Initialize audio quality with NONE instead of AMR_WB.
- Fixing conference merge where only one party is added to conference.
- Add call log types definition for Ims call.
- IMS-VT: Add additional error codes for upgrade downgrade
- Ims: Add support to query Packet Count and Packet Error Count
- Add support for wifi calling settings
- IMS: During CS retry, propagate reason code to UI
- IMS: add ImsConfig api to get volte provisioned value.
- IMS: change getMasterValue to getProvisionedValue.
- IMS: Add interface to query call forward for specific service class.
- Revert "ims: Bring in line with current release"
- lockscreen: Add option for showing unlock screen directly (Gesture)
- lockscreen: Add option for showing unlock screen directly
- SystemUI: Update RR Logo Drawables
- Simplify getting total memory
- Fix animation sequence for upload tasks
- QS: Update visibility of items in Bluetooth/WiFi tiles
- Themes: Set composed icon scale to 1f default
- Default to Resolver Theme
- Fix Custom Resolver Theming
- Fix Resolver Theming
- SettingsProvider: move Profile picker activity
- SystemUI: add missing super viewgroup method calls
- Fix race condition in panel expansion handling.
- Fix Launch Notification as Float Icon
- base: fix window bounds for left hand navigationbar
- framework: add string for wifi subscription change notification
- SystemUI: don't show recents if not provisioned
- Fingerprint wakeup: more consistent behavior
- Fixed: Wrong status bar notification layout width.
- services: do not keep notification light on, while incall
- SystemUI: screenshot: remove screenshot notification before taking screenshot
- carrier label : Fix ListPreference
- Carrier label : Remove duplicate int intColor call
- Remove lock screen hide carrier
- Fix typo on TR translations
- Lock screen weather : Remove duplicate color pickers
- Fix lockscreen settings xml (Fix locksreen shortcuts settings)
- Settings: On-The-Go mode On-The-Go turns on the camera of your phone and streams it to an overlay, which is drawn over everything. this makes you feel like your display is transparent, as you see the content behind it.
- Allow disabling the privacy guard notification
- Setting: Match brightness override padding to volume override
- APN: Fix typo
- settings : Squashed Updates
- StatusBar Settings: Hide "Disable Quick Settings On Lockscreen"
- Maintainers:Update LG G3 d855 Maintainer
- Settings: Configurations:Add Some Preference Headers
- vendor/cm: Remove custom resolver from OSS builds.
- services: do not keep notification light on, while incall
- SystemUI: screenshot: remove screenshot notification before taking it
- QS: Make WiFi and Bluetooth tile detail view consistent
- fingerprint wakeup: improve state and error handling
- Frameworks: Add option for position date left-right of clock
- Added Changes for Custom Resolver Activity
- Wallpaper: Create new WallpaperObserver on user switch
- SystemUI: Fix NPE
- services: option to disable lock screen device policy override
- Status bar carrier: don't show Emergency text if no sim is installed
- Fix noticfication tile fc on long press
- Lights with screen on: Don't disable leds after the lockscreen
- core: Reduce mutex contention in ActivityManager
- power: Boost improvements
- QS: Add RR Configurations Tile
- base: report wtf for external cm services
- native : input: Adjust priority
- native :Set explicit ioprio where required
- Simplify OnBoot for selinux switch
- Updated Translations
- Includes All Fixes and Performance Updates From CM
- For More Info Track Github Activities
XDA:DevDB Information
Resurrection Remix LP 5.1.1, ROM for the Sony Xperia Z3 Compact
Contributors
nelvinchi
ROM OS Version: 5.1.x Lollipop
ROM Kernel: Linux 3.4.x
Version Information
Status: Stable
Current Stable Version: v5.5.8
Stable Release Date: 2015-12-05
Created 2015-06-13
Last Updated 2015-12-05
Screenshots
Cool thanks. Been using RR on my note 2 for ages.
Can it be flashed on locked bootloader?
no!
---------- Post added at 06:54 PM ---------- Previous post was at 06:42 PM ----------
can someone using this rom tell me please if:
1. left/right cursor arrows are immediately shown when using keyboard (think so as it is a cm feature but in carbon for example you have to press a button first to see them)
2. is it possible to always show volume panel expanded
3. is it possible to assign long-press action to nav bar buttons to show volume panel without using hw volume buttons
all the custom roms i tried don't have the above (especially 2 and 3) and don't feel like unlocking BL again to just check this (also won't have my pc available soon to do that and fast internet connection to download the rom)
well thanks in advance if any can help
Gret rom before in lg g2, now in z3c. Thanks.
Enviado desde mi Xperia Z3C mediante Tapatalk
moly82 said:
no!
---------- Post added at 06:54 PM ---------- Previous post was at 06:42 PM ----------
can someone using this rom tell me please if:
1. left/right cursor arrows are immediately shown when using keyboard (think so as it is a cm feature but in carbon for example you have to press a button first to see them)
2. is it possible to always show volume panel expanded
3. is it possible to assign long-press action to nav bar buttons to show volume panel without using hw volume buttons
all the custom roms i tried don't have the above (especially 2 and 3) and don't feel like unlocking BL again to just check this (also won't have my pc available soon to do that and fast internet connection to download the rom)
well thanks in advance if any can help
Click to expand...
Click to collapse
Hi,
Re your questions:
1. Yes, it's configurable within custom settings
2. Not currently, but it's something I used in the past (via Gravitybox) - I'll look into it....
3. It should be possible to have the "Sound & Notification" menu appear, the back button would close the menu..... Not sure about the panel pop-up
I'll look into it further...
thanks for the answer mate!
actually 2 and 3 and missing radio are the only reasons right now why I'm still running stock + gravity box hope it'll possible to have them in custom roms too soon so i can make the switch (for sure #2 was there in other aosp roms i tried in my previous phone.. xenonhd and mokee for example if i remember right.. so shouldn't be that difficult to add?! #3 don't remember but really need it...)
thanks again bye and good luck with your rom! :good:
ps. i know i could use xposed + GB in custom roms too but if using custom roms i prefer not using xposed if possible
Any way how to increase camera quality in CM based ROMs? Theres too much noise and photos are in really bad shape. Sony Camera is much, much better than stock (Android Camera) one. This is one and only setback which holding me from using any CM based ROM. Thanks for replies in advance.
Carach_CZ said:
Any way how to increase camera quality in CM based ROMs? Theres too much noise and photos are in really bad shape. Sony Camera is much, much better than stock (Android Camera) one. This is one and only setback which holding me from using any CM based ROM. Thanks for replies in advance.
Click to expand...
Click to collapse
I feel exactly the same way, CM or CM based roms have better performance and more customization, but very bad camera performance for our z3c devices. Something should solve this drawback but how?
Ambient display not work and pie control have bugs.
Enviado desde mi Xperia Z3C mediante Tapatalk
** ROM updated to replace incorrect version of ViPER4Android FX control panel - you may wish to download the updated zip if you want to enable the full V4A features.....**
I'm still unable to V4A FX working, when I check driver status it reports back:
Driver version: 2.3.4.0
NEON Enabled: No
Enabled: No
Status: Abnormal
Audio Format: Unsupported
Processing: No
Sampling Rate: 0
Tried force enabling V4A in the respective tabs, no effect
I've also tried Selecting FX compatible mode, but that completely disables the audio outright
It doesn't keep prompting to install/update driver though
i can see some of emails. but unfortunatelyi in some emails i only see a white screen.
any solution for this?
DBCJoey said:
** ROM updated to replace incorrect version of ViPER4Android FX control panel - you may wish to download the updated zip if you want to enable the full V4A features.....**
I'm still unable to V4A FX working, when I check driver status it reports back:
Driver version: 2.3.4.0
NEON Enabled: No
Enabled: No
Status: Abnormal
Audio Format: Unsupported
Processing: No
Sampling Rate: 0
Tried force enabling V4A in the respective tabs, no effect
I've also tried Selecting FX compatible mode, but that completely disables the audio outright
It doesn't keep prompting to install/update driver though
Click to expand...
Click to collapse
Check if AudioFX is installed /system/priv-app/audiofx - try renaming the file from .apk to .bck and reboot....
Let me know if this works....
Thanks!
tatanico said:
Ambient display not work and pie control have bugs.
Enviado desde mi Xperia Z3C mediante Tapatalk
Click to expand...
Click to collapse
I'll have a look into this....
Thanks for letting me know
draligus said:
i can see some of emails. but unfortunatelyi in some emails i only see a white screen.
any solution for this?
Click to expand...
Click to collapse
Which email app are you using? GMail/Inbox/EMail?
Thanks
nelvinchi said:
Check if AudioFX is installed /system/priv-app/audiofx - try renaming the file from .apk to .bck and reboot....
Let me know if this works....
Thanks!
Click to expand...
Click to collapse
Didn't appear to work, still said the above on driver status and no different audio effect.
The file inside was a .bak file, not an .apk. Still renamed to .bck though and rebooted. Strange
Otherwise it's a brilliant ROM!
nelvinchi said:
Which email app are you using? GMail/Inbox/EMail?
Thanks
Click to expand...
Click to collapse
.ı use Email application.
DBCJoey said:
Didn't appear to work, still said the above on driver status and no different audio effect.
The file inside was a .bak file, not an .apk. Still renamed to .bck though and rebooted. Strange
Otherwise it's a brilliant ROM!
Click to expand...
Click to collapse
Strange.... can you check that lib4a_fx_ics.so is in /system/lib/soundfx
Also, did you flash the updated ROM zip from the OP link (*44A-updated.zip)?
Thanks!
trying this rom right now, it seems the best to me among all the aosp based ones I tried so far in terms of built-in features :good: thanks for this!
only things I am really missing so far are the expanded volume panel I asked about in the first page and especially the possibility to show volume panel using nav bar buttons ;(
is that something you can add maybe, or to see it included eventually we will have to wait RR to add it? because in this case, it may take ages I guess... if it will ever come! :crying:
(I really need this feature because, apart from saving volume hw buttons life, when I am on my mountain bike and the phone is inside the bag on top of the bike and I am listening to some music with headphones, I don't have access to the lateral hw volume buttons, but only to the screen, so I really miss stock + Gravity Box because with that feature I can see volume panel and change music volume just using the nav bar buttons on the screen without that, in RR, right now I can't change volume at all ;( ) (and I don't have remote volume controls on the headphones of course...)
other thing is a quick 2g-3g switch quicktile (again present in GB) as I switch very often between "only 2g" and "only 3g" (right now I have to long press the "data connection" tile, and from the menu that appears choose my favourite network mode, which takes longer.. and actually it is still not a only 2g / only 3g switcher, but preferred network mode)
last thing is the fm radio, but this is missing in all custom roms, so I think we will have to give up about it
will test and see about any bugs and battery life!
about bugs, only thing I noticed so far (if it is a bug!) is that after applying the black theme that comes with the rom and rebooting, I get the notification panel (quicktiles part) correctly themed (black), but the upper part of the status bar remains with the original bluish color.. is that intended to be like that? or something that should be fixed? (see screenshot)
thanks again for this in the meantime, very very nice and promising rom!! :cyclops:

Categories

Resources