[APP]Pie Control 2.0 RC7 (3/15/14)on Galaxy Note 2(4.1/4.2/4.3/4.4) - AT&T Samsung Galaxy Note II

First of all I would like to say that this isnt my work nor did I create this. I saw this on the Nexus 4 thread.
I can confirm it works on all Kit Kat ROMs.
Here is the original thread=http://forum.xda-developers.com/showthread.php?t=1330150
Heres my screen shot on my Note 2
{
"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"
}
LMT is a tool for Android (tested already on multiple devices - see below) that launches a command when perform single touch or multitouch gestures on the screen (In any app/screen/etc.). You can connect basic and advanced commands to any gesture LMT supports. In addition to the gestures you can activate a system-wide PieControl for navigation like the feature in the ICS stock browser (touch the side of the screen to activate it). You must be ROOTED to use this feature.
Installation
Download the latest apk, copy it to your phone and install it via file explorer. After installation start LMT and set the specified input device for your phone. Then connect an action to e.g. the double swipe up gesture, start the touchservice and do the double swipe up gesture on the screen afterwards. If everything works fine, you’ll see the corresponding overlay and action. The input devices/touchscreen to screen factors:
•HTC Evo3D -> 4
•HTC Sensation -> 2/4, x=200%, y=100%
•HTC Amaze -> 4
•HTC HD2 -> 0
•HTC DesireHD -> 3
•HTC Thunderbolt -> 1
•HTC Inspire 4G -> 1
•HTC One X -> 4
•Google Galaxy Nexus -> 1, x=100%, y=100%
•Google Nexus S -> 0
•Google Nexus 4 -> 2, x=200%, y=200%
•Google Nexus 7 -> 0, x=160%, y=200%
•Samsung Galaxy S2 -> 2
•Samsung Galaxy Note -> 2
•Samsung Galaxy Note 2 -> 2
•Samsung Galaxy S -> 0/8
•Samsung Galaxy Tab 8.9 -> 4
•Sony Xperia T -> 2
•Motorola Atrix 4G -> 3/5
•Motorola RAZR -> 4
•Motorola DROID 3 -> 4
•Motorola Defy -> 3
•HP Touchpad -> 6
•Acer Iconia -> 2/4
•Alcatel One Touch 997D -> 7
Gestures
•Square (start gesture top left cw)
•Diamond (start gesture at the bottom cw)
•Delete (start gesture top left)
•SwipeRightDouble
•SwipeLeftDouble
•SwipeUpDouble
•SwipeDownDouble
•SwipeRightLeftDouble
•SwipeLeftRightDouble
•SwipeUpDownDouble
•SwipeDownUpDouble
•QuestionmarkDouble
•SquareDouble
•DiamondDouble
Commands
•None -> Trigger no command
•App -> Trigger an arbitrary app
•Home -> Switch to home screen
•HomeLongpress -> Trigger the TaskManager
•Menu -> Trigger the menu key
•Back -> Trigger the back key
•Search -> Activate search
•SearchLongpress -> Activate voice search
•NextApp -> Switch to the next running app
•PrevApp -> Switch to the previous running app
•LMT -> Open LMT user interface
•Wifi -> Toggle the Wifi mode
•Bluetooth -> Toggle the Bluetooth mode
•GPS -> Open the GPS config menu
•Key -> Trigger an arbitrary key (e.g. "3" for the HOME key - see http://developer.android.com/reference/android/view/KeyEvent.html
for keycodes)
•Activity -> Trigger an arbitrary activity (e.g. "com.android.lmt.InfoActivity" for the LMT info page)
•WebPage -> Open an arbitry webpage (e.g. "http://forum.xda-developers.com")
•Script -> Open an arbitrary script (e.g. "/mnt/sdcard/sendevent.sh" for Home Longpress - see attached script sendevent.sh)
•KillApp -> Kill the current foreground app and switch to home screen
•KillAllApps -> Kill all apps and switch to home screen
•TaskerTask -> Start a predefined tasker task (You should avoid spaces in your task name)
•OpenNotificationBar -> Open the notification bar
•OpenQuickSettings -> Open the quick settings
•OpenKeyboard -> Open the soft keyboard
ISAS
The ISAS (invisible swipe areas) can be used to swipe with one finger from the sides to to center of the screen (like you would bring up the pie) to trigger actions. E.g. you could use the 3 ISAS at the bottom of the screen to trigger back, home and recents with just swipes when the navbar is hidden. Those swipes are as fast and reliable as normal button presses. In order to make the ISAS work you have to do the following setup:
•activate gestures via setMode (because ISAS are being recognized via the internal gesture engine)
•Configure min bbox size. Actually this is the length in pixel the swipe must be long, so that the corresponding action for the ISA is being triggered.
•Configure activation area size. This is the height (for bottom/top ISAS) or the width (for left/right ISAS) of the area, where the swipe must be started in. So the lower the value, the more precise you have to start the swipe at the side of the screen
•Last but not least the touchscreen to screen factors: As for some devices the touchscreen uses a different coordinate system as the screen, you have to adjust here the values for x and y. For the Nexus devices I added those values already to the OP and in later versions I'll introduce a kind of auto calibrate. But for now it is a little bit of testing...
Once the setup is complete you can assign your actions to the 12 available ISAS!
Troubleshooting
If LMT is not working on your device out of the box please determine the correct input device first:
•Download a terminal (e.g. terminal emulator) from the market
•Enter su and then getevent in the terminal
•After that just touch the screen and send me the trace from the terminal
Then create a logcat:
•Install e.g. catlog from the market
•Record with catlog the following procedure:
•Start LMT
•Set input device to xxx from first procedure
•Set single touch gestures to 777
•Start the TouchService
•Do the double swipe up gesture on the screen
•Stop the TouchService
•Send me the logcat...
FAQ
Setting the pie color:
The format is just ARGB8888 in hex (8 bit for alpha and every color). So just use #xx where xx is alpha starting from 00 to ff and add the desired color afterwards. Have a look here for different colors but keep in mind that in these examples the alpha value is missing http://www.javascripter.net/faq/rgbtohex.htmSo if you have the color "rgb(124,252,0) #7CFC00" it will be #FF7CFC00 for an opaque pie and e.g. #807CFC00 for a half transparent pie...
Adding custom icons for pie items:
To have custom icons for the pie items put your own png images into the following folder: "/sdcard/Android/data/com.android.lmt/files/". The default icons have the size 120x96px but other image sizes should also work (they will be resized). You can define custom icons for every pie item and/or for every action (LMT first tries to load the icon for the pie pos, then the custom icon for the action and will use the default action icon if no other icon is defined). To set custom pie pos icons name the png pie[0-19].png where e.g. “pie0.png” will be the icon for pie item level1, item1, shorpress and “pie1.png” will be the icon for level1, icon1, longpress. To set custom action icons just name the png [actioname].png (see command section in the OP for action names – use lowercase, e.g. back.png). Please restart the TouchService after you changed the icons, so that LMT can recreate the pie.
Changelog ;3/15/14
2.0 RC7 -> Fixed apps sometimes not opening when they were already running; Changed pie longpress bahavior as requested by users; Added screenshot action; Fixed start delay for activity action; Limited pie pointer to screen; Fixed date when set to regional setting; Added possibility to change user image search path and gave LMT permissions to read from sdcard; Added call_phone permission so that direct call shortcuts are working
1.99 -> Made pie outline size configurable; Excluded home from pre/next/lastApp actions
1.98 -> Fixed TouchService crash on devices < JB
1.97 -> Resorted actions so please reconfigure them!; Optimized app launch action; Fixed crash with new injection method on older devices; 2000 + key is now longpress key with longer wait; Added new longpress key and lastApp action; Added pie bottom not centered option; Added new default animation for pie status info (old animation when animation time > 80); Added auto calibration of ISAS's touchscreen to screen factors. Just swipe (with gestures activated) multiple times in the lower right corner up; Made pie font size configurable
1.96 -> Made back, menu and keyevent actions faster; Made app/activity start actions faster; Optimized prev/next app actions; Added new pie color options for gradients; Added longpress keys support (Action key with 1000+keycode); Added notification support for < ICS
1.91 -> Adapted date style based on system settings; Added pie font configuration; Added pie status info dim color configuration
1.9 -> Redesigned UI a little bit; New color picker; Added support for non armv7 devices; Fixed tasker task; Fixed script action; Fixed 24h clock
•1.86 -> Added 24h clock support; Fixed wrong Wifi level; Fixed wrong CPU cores; Improved notification handling; Introduced option to deactivate color filter for pie images
•1.85 -> Added pie sensor navigation support (Show pie status info = 2): Shake your device left/right to delete a notification and go to the next one. Shake your device up/down to go to straight text mode and back; Fixed pie status info for older devices; Centered pie at the bottom; Added pie outline support; Added system status info (CPU, Mem); Fixed clock format; Fixed pie not firing action; Fixed pie on the left wrong order
Exchanged some pie icons
•1.8 -> First version of status infos on pie. Status info shows clock, additional infos and notifications. In order to get notifications on the pie you must activate LMT as accessibility service in the android settings. Swiping on the status info will pause the animation, swiping back on the pie will restart it. Releasing finger on the notification will start the corresponding application. Releasing finger on the clock will open the notification panel and releasing on additional infos will open quick settings panel; Added full color support for pie (normal, select, icon and status info). Set #ARGB,#ARGB,#ARGB,#ARGB or Android color constants e.g. "gray,yellow,black,yellow". Also app/user icons are colored now; Added new default pie color 5; New default TouchService mode is pie only since gestures are confusing for new users; Fixed exception in load icon code; Fixed icon size in app selection dialog; Changed some UI strings; Added new action OpenQuickSettings; Exchange some pie images; Cleaned up permissions
•1.7 -> Added pie from the bottom; added bigger activation area for pie items inspired by Paranoid Android pie
•1.67 -> Added scaling for pie user icons (new settings entry); fixed persistency bug for last 2 isas
•1.66 -> Fixed missing "OpenNotificationBar" action icon for pie; Fixed crash when using image overlays and isas
•1.65 -> Fixed crash in isa code; fixed bug in "open notification bar" action
•1.6 -> Added Isas (Invisible swipe areas). Define action being triggered when swiping from the sides of the screen (new configuration values "single swipes bbox" for min bbox to trigger the swipe, "single swipes activation area" for the width of the area the swipe must be started in and "touchscreen to screen factor X/Y" for these devices, where the touchscreen values have a different resolution compared to the screen - e.g. X=160%, Y=200% for the Nexus7 and X=200%, Y=100% for the HTC Sensation); Resolved pie activation area interfering with the keyboard: The area is now moved upwards when keyboard is open; Block single touch gestures/swipes when keyboard is open; Improved speed of gesture engine; Changed some default configuration values; Deactivated tap and hold gestures (they didn't work anyway); Added support for app icons on the pie; Added Tasker Action; Added new styles for the pie; Updated input device list; Improved security
•1.5 -> Refactored whole GUI to match ICS/JB/Holo style with swiping tabs; Fixed small bug with pie debug activation area; Added pie animation from JellyBean pie in browser (only >= Honeycomb); Made pie animation time configurable; Changed code for home command to make it faster; Updated PayPal link for English website; Updated input device list
•1.4 -> JellyBean bugfix release; Fixed disappearing pie when rotating the screen in jb; Adapted pie outer radius to fit new jb style (80)
•1.3 -> Fixed pie firing commands even if fg app was blacklisted; Changed behavior for command killApp to really force stop the app; Added again vibrate on shortpress as an option for the pie feedback style; Fixed startup delay affecting all other starting apps; Fixed bug where pie icons disappeared when using them for short- and longpress commands; Improved pie icon size handling for user defined icons (they will have a constant size now)
•1.2 -> Fixed run on startup problems on GNex; Added separate blacklist for pie; Changed pie feedback style shortpress to fire; Change to proper pie icons on longpress; Made pie icons configurable (Path: "/sdcard/Android/data/com.android.lmt/files/", Files: pie[0-19].png or [actioname].png); Fixed rotation bug where pie showed up even if it was disabled; Added multi command feature for pie (swipe onto one pie item n times to fire the command n times)
•1.1 -> Added blacklist support for pie; Fixed bug where pie didn't come up with the first try; Added show pie activation area debug feature (area is shown when you change area settings); Added vertical gravity setting for the pie activation area; Fixed too small x activation area for the pie; Fixed wrong positioned pie icons when pie is on left side; Included system apps in app/activity command dialog (e.g. choose com.android.settings to show the settings menu); Fixed pie crash when rotating the screen; Pie longpress timer is now handled for every pie item; Added root context reinit in case of a crash
Fixed crash when selecting an app without activities
•1.0 -> Refactored pie code and fixed crash related to pie; Added fully customizable pie feature; Fixed multiple action after gesture recognition; Added customizable vibration time; Added "no pie vibration" to options
•0.97 -> Fixed root permissions for some usecases
•0.96 -> Fixed crash when setting wrong values for pie radius; Fixed pie rotation bug bug
•0.95 -> Made pie color fully configurable; Added haptic feedback for the pie; Made pie size configurable; Fixed pie rotation bug
•0.9 -> Fixed Galaxy S ICS support; Added support for PieControl on both sides; Added 2 new commands: KillApp and KillAllApps; Added longpress support for PieControl: Back->KillApp, Home->PowerOff, Recent->KillAllApps, Menu->Settings and Search->VoiceSearch
•0.85 -> Implemented ICS recent apps (finally...)
•0.8 -> Added a first version of the PieControl with predefined actions
•0.75 -> Fixed gesture recognition problem on GSN; Refactored TouchService code; optimized recognition performance/speed; refined compiler settings
•0.7 -> Fixed launch app delay; Fixed autostart problem on ICS; Implemented ActivitySelect feature; Added blacklist support to exclude apps from gesture recognition; Added new TaskSwitcher commands
•0.6 -> Fixed TouchService restart bug; Sorted app list alphabetically; Automatically restart TouchService when switching input device; Adapted superuser rights to ICS; Changed HOME_LONGPRESS to KEYEVENT_APP_SWITCH (187); Added Galaxy Nexus support; Refactored TouchService
•0.5 -> Show current settings in input dialogs; Show TouchService state toaster; added known devices in input list; added autostart after startup feature
•0.4 -> Improved touchservice code; added app select list for app action; added activity action
•0.35 -> LMT is now rotation aware; added tactile feedback for gesture recognition; corrected some strings
•0.3 -> Omit overlay when no command given; add more gesture recognition settings; add new toggle commands for Wifi, BT and GPS
•0.25 -> Fixed HD2 TouchService code; Corrected logcat output for HD2
•0.2 -> Added HTC Sensation support
•0.1 -> First release
Updated 3/15/2014
Download latest version :https://mega.co.nz/#!ANxXVJpQ!dwyReyVFXKUcNjADcq0qvYvTfj3vpPx1ekF6k-dY0IY

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
Mmmmmmmmm pieeee
Sent from my SAMSUNG-SGH-I747 using xda premium

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
So cool! Thank you for this! It works perfect and looks amazing
______________________________________
Phones: iPhone 4 - > iPhone 5 - > Note 2 (Always on AT&T)
ROM: International N7105XXDLL4 by miscom
Kernal: Perseus alpha30.1
A lot of bloatware removed.
Screen on time after normal charge: 7-8 hours always.

Looks great I will give it a try in a bit I have been wanting to give this a go!!!

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
So far so good on CleanRom SE 1.2
Sent from my AT&T Samsung Galaxy Note II.

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
What a wonderful mod, thanks so much for this.. Working on CleanRom 4.0.5.
Sent from my SAMSUNG-SGH-I317 using xda app-developers app

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
I installed this earlier today and is working perfectly for me on my gn2. I also have an Otterbox Commuter case on with no problems. I do suggest increasing the "Activation Area Thickness" to give yourself a bit more room due to the loss of your car if you have one on line the Otterbox.
I've done some tweaks with it and so far this is a great app.
I'm stock rooted with some hacks, but no custom ROM.
Sent from my SPH-L900 using XDA Premium HD app

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
Using this with Jedi 9 the only issue I have found so far is it will not open the phone when you choose it as a app to open on the pie. The contacts works fine just not phone itself other than that very nice.
Sent from my SGH-I317M using Tapatalk 2

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
Working fantastically on Novella ROM. Thanks!
Sent from my SAMSUNG-SGH-I317 using xda premium

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
Manitobamonster said:
Using this with Jedi 9 the only issue I have found so far is it will not open the phone when you choose it as a app to open on the pie. The contacts works fine just not phone itself other than that very nice.
Sent from my SGH-I317M using Tapatalk 2
Click to expand...
Click to collapse
You have to open terminal and set a event. I can't figure it out though.
Sent from my Samsung Galaxy Note 2 on CleanROM ACE 4.2.5 with Pie Control.

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
KaliS-Pugilist said:
I installed this earlier today and is working perfectly for me on my gn2. I also have an Otterbox Commuter case on with no problems. I do suggest increasing the "Activation Area Thickness" to give yourself a bit more room due to the loss of your car if you have one on line the Otterbox.
I've done some tweaks with it and so far this is a great app.
I'm stock rooted with some hacks, but no custom ROM.
Sent from my SPH-L900 using XDA Premium HD app
Click to expand...
Click to collapse
Yeah I have a otterbox too. I did the same thing.
Sent from my Samsung Galaxy Note 2 on CleanROM ACE 4.2.5 with Pie Control.

This is working flawlessly on Cleanrom 1.2. Great program indeed.

Really enjoying some pie, thanks!

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
Furioustylez said:
First of all I would like to say that this isnt my work nor did I create this. I saw this on the Nexus 4 thread.
I tried it on my Note 2 and I can confirm its works. Im on CleanRom ACE 4.2.5
Download:
Latest version=https://www.dropbox.com/s/bz9rgrl2sjwp9ly/LMT_v1.86.apk
Click to expand...
Click to collapse
Good find furious, I see you as I, have found lurking in other device threads finds goodies that are compatible with our devices
Sent from my SAMSUNG-SGH-I317 using Tapatalk 2

Re: Pie Control{LMT Launcher} on Galaxy Note 2 (on any rom) TW or AOSP
Confirmed working on stock AT&T Rom
Sent from my SAMSUNG-SGH-I317 using Tapatalk 2

download the latest v1.9 fixes issues with tasker, i used tasker to trigger the stock phone dialer and just has pie activate the tasker task to bring up the dialer
http://forum.xda-developers.com/showthread.php?t=1330150&highlight=tasker

Hi Guys,
do you know how to have the "Expanded Desktop" just like on the Nexus 4?
thanks,

Re: Pie Control{LMT Launcher}(2/5/13)on Galaxy Note 2 (on any rom) TW or AOSP
flatronics said:
Hi Guys,
do you know how to have the "Expanded Desktop" just like on the Nexus 4?
thanks,
Click to expand...
Click to collapse
What do you mean?..im curoius

flatronics said:
Hi Guys,
do you know how to have the "Expanded Desktop" just like on the Nexus 4?
thanks,
Click to expand...
Click to collapse
you mean hide the status bar basically right? Can't you just do that with third party launcher?

Re: Pie Control{LMT Launcher}(2/5/13)on Galaxy Note 2 (on any rom) TW or AOSP
mutantblack said:
you mean hide the status bar basically right? Can't you just do that with third party launcher?
Click to expand...
Click to collapse
Yeah... but I prefer TW(plain and simple).
Do you know a way that would work with sammy based custom rom?
Thanks.
Sent from my GT-N7100 using Tapatalk HD
--------------------------------------------
AllianceRom rockin' with Perseus Alpha 32.1

Related

CyanMobile help, requests, and general info

Everything CyanMobile​
Well CyanMobile has really taken off and to help keep everything a bit neater and easier I have created this non-development thread. I will be posting instructions on just about everything here (This will be my free version of CyanMobile Settings Map and it will only cost you $5.99 LOL!).
I will start taking screen shoots of what the settings do and where they are to help assist everyone in setting this beast up. The options are numerous and most users will require hours of fiddling to find things and some will never find most of the cool features. So this should help everyone from the newest noob to the veteran users.
Also this will be where you can ask for help dealing with apps not included with rom, questions on settings, comment on your experience, and make requests (not saying all or any requests will be filled but it never hurts to ask).
While digging around in the source code I came across this from the SquadZone Team. It is a list of some of the features that are included in this rom.
What is CyanMobile?
CyanMobile is an aftermarket ROM like CyanogenMod, MIUI, JoyOS, LewaOS and others that are built from source...
Absolutely built from source based on CyanogenMod 7 (Gingerbread v2.3.7) and modifications from AOSP and AOKP
Thanks To CyanogenMod Team, AOKP Team, and AOSP Team for Their Work
**********************************************************************************************************************
** CyanMobile is Short of " *Cyan* (CyanogenMod) *Mob* (Mobiling) *I* (Improving) and *L* (Let's) *E* (Experiment)" **
**********************************************************************************************************************
All features are based on what users do and what users need with lots of improvements here and there
This ROM (optimized by Gingerbread) uses updates from other branches (like ICS stuff, AOSP and AOKP) with reverse
engineering or backporting skills
It can be used without any need to have any Google application (Gapps) installed..
Let us talk about what is in CyanMobile:
====================================================================================================
1. Statusbar :
* Date
- Show/Hide Date
- Date Colour
* Notications
- Ticker Color
- No Title Color
- Latest Title Color
- Ongoing Title Color
- Clear Label Button Color
- Title Color
- Item Color
- Time Color
* Icons
- Show/Hide Notification Icons
- Show/Hide Statusbar Icons
- Show/Hide Headset/Alarm/Bluetooth/Gps/Sync/Wifi/3G/4G Icon
* Clock
- 4 Clock styles (Right, Left, Center and Hide)
- Clock Color
- Clock Font Size
* Carrier label
- Show/Hide Carrier Label
- Bottom Carrier Label
- 3 Carrier Label On Statusbar Styles (Right, Left and Center)
- Carrier Label Color
- 4 Carrier Logo Styles (Right, Left, Center and Custom Logo)
* Signal
- 5 Different Styles (Bars, Text, Text w/dBm, text w/Auto Color and Hide)
- Wifi Signal Text
* Battery
- 7 Different Styles (Icon, Percentage, Top Statusbar, Side Bar, Behind Statusbar, Navigation Bar and Hide)
- 3 Different Battery Percentage Format (Default, Percentage and Full Color)
- Statusbar Battery Color
* Power Widget
- 4 Different Layouts (Default, Bottom, Grid and Tab)
- Music Widget
- Grid Layout Customizing
* Misc
- Refactor New Statusbar Layout
- Power Clock
- Power Date
- Weather PopUp
- Shortcut Button
- Show/Hide Statusbar
- Reverse Statusbar Icons And Layout
- Statusbar Brightness Control
- Statusbar Fonts Size
- Statusbar Icons Size
- Statusbar Height Size
- Statusbar Background
- Statusbar Background Color
- Notification Background
- Notification Background Color
====================================================================================================
2. Framework :
* Lockscreen
- 11 Different Lockscreen Styles (Sliding Tab, Rotary, Lense, Ring, Honeycomb (beta), Circular (alpha), Sense (beta), ICS Ring (alpha), Jb Ring (alpha, Jb GlowPad (Alpha) and Bebek Ring (alpha))
- Lockscreen Widget Color
- Sms/Call Notifications
- Fuzzy Clock
- Kanji Clock
- Custom Text Lockscreen
- Widget Layouts
- Pattern Styles
* Power Saver
- Screen Off Data Action
- Data Action Delay
- Sync Action
- Sync Time Interval
- Screen Off Wifi Action
- Sync Data Usage
- Mobile Data Preference
* Application
- Native A2SD Framework Core
- Installation Place
* Display
- Bravia Engine
- Rotation Animation
- Window Animations
- Transition Animations
- LCD Density
* Input
- Quick Key Behavior
- Enable/Disable Vibrate on Shutdown
- Explorer Key
* Power Menu
- Show/Hide Power menu/Silent/Airplane/Profile/Screenshot/Power saver/Hibernate/Suspend Toggles
* Fonts
- Change Fonts System
- Change Fonts Type
* OverScroll
- Effect
- Color
- Weight
* Core Replacer
- Change System Apk
- Change Framework Apk/Jar
* Boot/Shutdown animation and Sound
- Preview
- Change Bootanimation
- Change Shutdownanimation
- Change Bootsound
- Reset
* Misc
- New Notifications Design
- Intruder Alert is Life
- New Dialog Design
- Backported Some Apis From Jellybean
- Clear Market Data
- Global Text Color Change
- Global App Background Change
- Soft Button Statusbar
- Navigation Button Bar
- Choose Navi Button
- Navigation Button Bar Size
- Navigation Bar Background
- Extend Power Menu
- Remap Volume Keys
- Lock Volume Keys
- Volume Key Beeps
- Swap Volume Keys
- Task Switcher
====================================================================================================
3. Sound :
* Features
- Loop Ringtone
- Flip Down To Mute Ringer/Snooze Alarm
- Increasing Ringtone Volume
- Less Frequent Notification Sound
- Battery Full/Low Alert
- Charging Plug/Unplug Sound
====================================================================================================
4. Tethering :
* Features
- Bluetooth Tether
- Auto Usb Tether
====================================================================================================
5. Phone :
* Features
- Smart Phone Call
- Back Button To End Call
- Menu Button To Answer Call
- Reject Call with Message
- Allow Incall UI Touch
- Call Me Louder While Inside Bags
- Speed Dials
- Video As Ringtone
- Ring Delay
- Export/Import SIM Contacts
====================================================================================================
6. Messaging :
* Features
- Bubble/Black/Transparent Theme
- Smart Phone Call
- Hide Avatar
- Strip Unicode
- Emoji Support
- Convo List/Subject Font Size
- Sms Vibrate Morse
- Brutal Sender
- Sms PopUp
====================================================================================================
7. Music :
* Features
- Shake To Next/Prev/Play/Pause/Shuttle Track
- Favorite Folder
- Flip To Play/Pause
- Smooth Play Track
====================================================================================================
8. Locations :
* Features
- Enable/Disable Assisted GPS
- GPS Tracker Performance
- Security Device Finder
====================================================================================================
9. Performance :
* Features
- New I/O Scheduler Option
- New Dithering Support
- Enable Bootsound
- Bootsound Volume
- Enable Shutdownanimation
- Gmaps Hack
- KSM Settings
- Battery Polling
- Low Mem Killer Option
- Scrolling Option
- SD Read Ahead Size option
- Screen Off Max CPU Freq
====================================================================================================
10. Misc :
* Features
- ADWLauncher Improved
- Browser Improved
- Calculator Improved
- FM Radio Improved
- File Manager Updated
- SIM ToolKit Improved
- Screenshots Improved
- Task Manager
- Voice Dialer Improved
I will use this as the base of my CyanMobile Map. I have a bunch of screen shots and will be updating the OP over the next few days with this. Hope this helps yall setup your Rom with a bit more ease. Keep your eyes on this page and see what you can do with your new toy.
Major settings
Under Construction
How to answer incoming calls and how to change the way you answer them.
As most of yall have noticed if you have tried this rom this thing is a beast when it comes to customization. There are countless things you can do and one of them is change how your dialer works. Out of the box you dont have softkeys to answer or hangup your phone. You must hit the settings hard key to answer or dial and the back key to hangup. Sorry about not listing that till now but I forgot about it
How to setup some of the basic features
Changing how you answer your phone
1. Settings -- CyanMobile Settings -- calls
2. Check allow incall ui touch this will give you a ui to answer/reject calls (if you only uncheck the two above this then you will be unable to answer your phone)
3. Also you can recheck the two options to use the menu and back keys and then either the buttons or the ui will work
Setting up GPS
1. Settings -- Main Settings -- Location & Security
2. Check Use wireless networks
3. Check Use GPS satellites
4. Select GPS source then select Use Internal GPS
5. Last one is your choice (it does use your mobile data) Check Use assisted GPS
Second there is a built in a2sd but needs to be setup.
1. Settings-- development -- check mount SD on boot and enable download on SD.
2. Reboot
3. Settings -- applications -- preferred install location -- sdext
4. Settings -- cyanmobile settings -- check allow application moving
5. Select install location and choose sd-ext
6. Now reboot
From now on all apps will automatically be on sdext.
You can go into settings -- application -- manage applications
If everything was done correctly then you will have an option to move to sdcard and move to sd-ext/phone.
Now I know some of yall are getting tired of setting up this rom every time I put out a new release. While this wont save everything it will save most of our settings. Open CyanMobile settings and scroll over to Utilities and you will find options to back up and restore. Just follow their instructions.
To disable boot audio
Settings -- CyanMobile Settings -- Performance
Uncheck enable boot sound and reboot (I have tested and this does work)
A2sd style scripts will cause bootloops
Note on themes: so far every cm7 theme I tried works fine.
CyanMobile Settings
Well I am sure most of yall can figure out the normal settings so I will leave those out of this guide (unless I get requests for them).
I am going to start at the beginning and work my way through the settings. Some things might cover what has been posted in OP #1 but doing it this way will be easier for me. Also it should help to server as a better map for yall. I am taking pics as I am writing this so for now you will just see an insert message till I get them uploaded.
1. CyanMobile settings
2. First up is the Application tab
A. There are four listings here as shown above.
1. Allow application moving -- this must be enabled to use the built in a2sd program
2. Install location
a. Automatic -- system decides where to place apps
b. Internal -- this places apps on your /data partition
c. External -- this places apps in your .android_secure folder on your main sd partition (not a good option, will reboot when connecting mass storage.
d. SD-Ext -- this places apps on your sd-ext partition (best choice)
B. Use internal storage (this option is not for use and is grayed out)
C. Permission management -- this gives you the option to revoke or grant permission on a app by app basis
3. Calls tab
A. Smart phone call -- cool feature allows you to automatically dial a number when phone is placed near your ear (open contact, message or put number in dialer then put phone to your head and it dials)
B. Back button end call -- on by default
C. Menu button answers calls -- on by default
D. Allow Incall UI touch -- off by default -- selecting turns off options B + C (but you can enable them and have the option to use buttons or the UI) -- if you unselect this option it will automatically turn on options B + C (that way you will never be left without a way to answer calls)
E. Loop ringtone -- loops ringtone until call is answered or goes to voicemail (if not selected a short ringtone will only play once then stop)
F. Call Me Louder -- uses proximity sensor an will increase call volume when phone is inside pocket/bag/etc. (battery draining feature)
G. Vibrate during calls
H. Flip down to mute ringer -- battery draining feature
I. Flip down to snooze alarm -- battery draining feature
4. CPU settings tab
A. Current CPU frequency
B. Available governors -- changes governor
C. I/O scheduler -- changes I/O scheduler
D. Min CPU frequency -- allows you to set the lowest frequency the governor can use
E. Max CPU frequency -- allows you to set the highest frequency the governor can use
F. Max screen off CPU frequency -- limits screen off frequency -- if governor uses screen off freq then the lowest setting of the two will be used
G. Set on boot -- will restore setting after reboot/restart (only select after testing above settings -- that way you don't get stuck in boot loop due to too high/low cpu settings)
5. Display tab
A. Automatic backlight
1. Enable
2. Window length ( 2-60 seconds )
3. Reset threshold
4. Sample interval
5. Use custom
6. Screen dim level
7. Edit other levels
8. Allow light decrease
9. Decrease hysteresis
B. Screen-on animation -- animation when you come out of sleep
C. Screen-off animation -- animation when you go into sleep
D. Enable Bravia engine -- on by default (said to improve graphics)
E. Rotation animation
F. Window animation (this is not the only place to change this)
G. Transition animations (this is not the only place to change this)
H. Display Option -- changes the display size (evo 4G is 800X480)
I. Reset Display size
J. LCD Density (this can effect your market/playstore)
K. Clear Market data
L. Click to Reboot!
M. Reverse rotation -- used if your phone does not rotate correctly
N-Q. Used to enable/disable rotation settings 0, 90, 180, 270 degrees
6. Input tab
A. Input Tweaks
1. Haptic feedback tweaks
a. Haptic feedback main -- vibration when pressing softkeys and some UI interactions
b. Haptic feedback up -- vibration on release of key and some UI interactions
c. Haptic screen items -- vibration when making screen selections (haptic feedback up must be enable to use this feature)
d. Set Down Pattern -- make vibration patterns
c. Set Up Pattern -- make vibration patterns
d. Long-Press Pattern
e. Set Keypad Tap Pattern
2. Long-Press home settings
a. Show recent apps title
b. Number of recent apps
c. Quick home button -- when enabled pressing home shows recent apps (no long press required)
d. Task Switcher -- this is the app that makes it look like ics style recent apps (on by default)
e. Use custom application
f. Select custom application -- sets application used when long pressing home
3. Long-Press menu
a. Choose behavior -- a few preset options
b. Select custom application -- allows you to set app launched when long pressing menu
B. Search key behavior
1. Search key app
2. Custom application
3. Long-press search key
4. Custom application
C. Vibrate on shutdown
D. Volume rocker wake -- use volume keys to wake phone
E. Volume button music control -- long press vol+ to skip forward, vol- to restart/skip back (D and E can be enabled at same time so use care or you will wake the phone instead of changing tracks)
F. Camera button music control -- can be enabled but since we have no camera button it does nothing
G. Explorer Key -- another option you can change but since we dont have this key it wont do anything
6. Interface tab
(insert 27, 28, 29)
To be continued....
three
four
five
When I tried step 3 on the a2sd it says "sd-ext disabled using auto"
Sent from my PC36100 using xda app-developers app
I am running it now and so far so good. I will upload to dropbox and send links via pm soon as I get all the governors added properly. For some reason Diablo is not showing up but I have hipkat and deathbysoap. The devil is in the details. LOL
crap wrong thread.
I will double check the setup. I am using a2sd right now without any problems. Must have mixed up or forget a step. Still trying to get all rom stuff straight and have not had much time for the setup part.
Edit:
Not sure what is going on with yours honda. I just tried it with my new beta 4.0 and it worked perfectly. I was on beta 3.0 dry and it had no problems with it either.
Work to be done
As I've said before " Great ROM " bout to make me update my SIG...LOL! It has had a couple problems, few RR, but still my DD! The usb connection makes it reboot? A2SD seems to not work? Most times it lags a lil then runs like a beast. I would love to try your KARA kernel! I'm hoping that these problems can be eliminated as I will be using this on my Phone as my DD until I upgrade. (which is when my evo dies) If you need any info from me or my device, just ask!
Guess I need A2SD installation instructions ..... wow I feel retarded.
Sent from my PC36100 using xda app-developers app
Don't feel bad this is not your normal a2sd installation instructions are available at the top of this thread. I am glad your liking the Rom. Enjoy and as always feel free to contact me with any issues or questions.
Sent from my shooter using xda app-developers app
Okay! I need a blonde or red head with at least DD's! A Ferrari, a few dollars? you did say you would help! ...:laugh:
Here are logcats for ya about my usb problem? hope fully its fixed in 4.0!
lokipimpin said:
Okay! I need a blonde or red head with at least DD's! A Ferrari, a few dollars? you did say you would help! ...:laugh:
Here are logcats for ya about my usb problem? hope fully its fixed in 4.0!
Click to expand...
Click to collapse
Well just a thought but if you wanting DD's I would suggest doing a rental cause they dont look so good after a few years. Smaller is better with age. LOL.
I am checking the logs now. Just a thought but have you tried other cables or pc's. I use usb also and never had the reboot issue.
Edit:
Oh I see the problem. Should be an easy fix on your end. Looks like you have your apps moved to the sdcard and not the sd-ext partition.
1. open app manager
2. move all apps to phone
3. move apps to sd-ext
4. mount ums and see what happens
Yeah... renting is a good idea ( for more than that reason)! What about the Ferrai???
Got the Usb fixed Thanks to you!
4.0 seems to be even smoother so far! The settings an app combination make it a power house of a Rom! An the theme settings make it look sharp too!
Will be messing with the endless settings to see what way I can break this Rom!
lokipimpin said:
Yeah... renting is a good idea ( for more than that reason)! What about the Ferrai???
Got the Usb fixed Thanks to you!
4.0 seems to be even smoother so far! The settings an app combination make it a power house of a Rom! An the theme settings make it look sharp too!
Will be messing with the endless settings to see what way I can break this Rom!
Click to expand...
Click to collapse
Well the Ferrari is not the best idea either. First it is a drivers car meaning built for a track and can be very unforgiving to the average driver. Then the money factor expensive to purchase, insure, and maintenance is more than down payment on a new car. The corvette is a better choice you get performance and fuel economy how many cars can do 0-60 in the 4 second range and get almost 30 mpg on the highway? Plus if you are smart enough you can buy it use it for a year and then sell it for more than you paid for it. Try that with a Ferrari.
Well back on topic. Break what you can that way I can fix it. With each release I find less and less things to do to make this better. Enjoy!!
Damn man all I wanted was a Ferrari .... now I'm upset. Boo- who.
Anyway so far... the A2SD is working great, USB connection is working, FFC, HDMI, GPS every thing is working! First rom I've flashed in a while that has been 100% Evo 4G compatible.
P.S. : follow install an setup instructions ( might save the asprin)
Sent from my PC36100 using xda app-developers app
lokipimpin said:
Damn man all I wanted was a Ferrari .... now I'm upset. Boo- who.
Anyway so far... the A2SD is working great, USB connection is working, FFC, HDMI, GPS every thing is working! First rom I've flashed in a while that has been 100% Evo 4G compatible.
P.S. : follow install an setup instructions ( might save the asprin)
Sent from my PC36100 using xda app-developers app
Click to expand...
Click to collapse
Oh don't forget to try out your kickstand. It works very well with this rom and it is a big reason many users bought this device in the first place.
Kickstand... Oh no mine is malfunctioning.... lmao
Sent from my PC36100 using xda app-developers app
lokipimpin said:
Kickstand... Oh no mine is malfunctioning.... lmao
Sent from my PC36100 using xda app-developers app
Click to expand...
Click to collapse
Alright guys I have finally got a start on my CyanMobile Map. Check out OP #2 and let me know what yall think.
jlmancuso said:
Well just a thought but if you wanting DD's I would suggest doing a rental cause they dont look so good after a few years. Smaller is better with age. LOL.
I am checking the logs now. Just a thought but have you tried other cables or pc's. I use usb also and never had the reboot issue.
Edit:
Oh I see the problem. Should be an easy fix on your end. Looks like you have your apps moved to the sdcard and not the sd-ext partition.
1. open app manager
2. move all apps to phone
3. move apps to sd-ext
4. mount ums and see what happens
Click to expand...
Click to collapse
My woman is 4'10, skinny , and is size 32H and I love it . Natural BTW.
Sent from my Galaxy Nexus using Tapatalk 2

[ROM][4.4.2] SlimKat - d802 [Beta 2.1][OFFICIAL]

{
"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"
}
Disclaimer: We are not responsible for any damages on your device.
SlimKat and KitKat in general is in an early stage. Still some apps are not compatible and still some devices have to fight with smaller issues but on the other hand a lot of devices are already quite stable. Whatever please keep in mind that these builds are labled for a reason as beta builds. As most slim users know we only tag our builds stable when they are already 100% stable and all features are back. But you will be surprised how stable it is already
Knock on and Knock off works - double tap on status bar to screen off
To get root working go to Settings/Developer options/
Then change the option "root access" to "apps and adb".
See some device specific info/changes in the 2nd post!
Installation instructions
Please keep in mind if a special instruction is needed it will be noted in the Changelog
Download the latest build from [here]
Gapps ( if you don't have it already) from [here]
Use latest TWRP (otherwise errors may occur while flashing)
!Recommended! Full wipe if coming from another roms
Flash ROM and the gapps you want, reboot
Features till now (some more added by the time)
Fully customizable quick settings the new way with new included music tiles and features
Notification drawer and quicksettings background as well with tablet support now
Notification transparency
Notification drawer shortcuts
Hide carrier label on notification drawer
Wifi access point is shown in notification drawer
Easy full swipe access between notification drawer and quicksettings
Quick pulldown for quick settings
Quick settings style options
Battery icon the new slim way reflected on quicksettings as well
Full Clock and date customization on status bar
Statusbar brightness control
Fully revamped navigation bar and navigation ring customizations much more ehanced to 4.3
Fully global menu customization the new way
SlimCenter
Mute Volume adjust sound
Ascending ringtone
Quiet hours new extended version
Mute Camera shutter sound
Control safe headset warning
Volume rocker music control
Less frequent notification sounds
Power connectivity alert
Fully customizable volume panel
Display rotation options
Fully customizable auto brightness hysterese
CRT animation the new way with new animation as well
Notification light options
Battery light options if device supports it
Volume rocker wake
Wake up on charge
Slims full customizable low battery warning
Enable/disable camera widget on lockscreen
Enable carousel animation on lockscreen
disable initial page hints on lockscreen
start widgets maximized on lockscreen
Fully revamped lockscreen target options
Lockscreen shortcuts
Lock before unlock the new way
Pattern size customizing
Systemwide blacklist support for calls and sms/mms
Slims Privacy Guard the new way
Auto keyboard rotation feature
Disable fullscreen keyboard
IME selector notification
Show permanent enter key on keyboard
Volume key cursor control
SuperUser
Mediascanner behaviour on boot
Wifi country code
Camera smart capture
Camera picture quality
Camera gps indicator
Camera colour filter options
Camera complete menu revamp the new way
Gallery video smart control
SMS/MMS has completly all feature back from 4.3
None intrusive incall UI
Dialer has all features back from 4.3
Torch app
System wide immersive mode aka expanded desktop
and tons of fixes on google code, revamps on old code, new features and polishing of old features and for sure a lot we still forgot to list here
Changelog
Beta 2.1
http://www.slimroms.net/index.php/changelog/408-slimkat-beta-2-1-weekly
Beta 1.7 - Beta 1.9
BatteryService: fix FC on boot until battery stat is present
National roaming info for yesss! in Austria
PhoneWindowManager: fix navbar behaviour in expanded mode after 4.4.2 merge.
systemUI: split the broadcast receiver in phonestatusbar
GlobalActions: collapse all panels if global action is shown
fb: small cleanup and fixes in navbar transitions
WindowManagerService: fix application transitions in expanded mode.
Base: Stylus Gestures
Base: Toggle Stylus Pointer Icon
fb: TRDS 3.0 and new theme engine preparation
fb: add theme switch (TRDS) to navbar and navring
QS: add theme switcher tile (TRDS)
fb: add ticker entries only if we are not recreating statusbar
Keyguard: disable statusbar clock for dashclock, lockclock and desclock
SystemUI: Add double tap to sleep gesture
Framework: Change stock Clock-Click Actions
Keyguard: let the user drag the challenge down if widgets are disabled
Add an option/category in Dev Set to customize the device hostname
Framework: Fix QuietHours Vibrate
Fix Immersive confirmation in expanded mode.
Fix ResTable_config::CONFIG_* typo (MCC vs MNC)
base: added national roaming info for Pepephone in Spain
National roaming info for 3 in Ireland
fb: lock statusbar recreation and release after ticker is done
fb: use SlimActions for torch tile and send as qualified user
Camera: don't display picture size unless supported
Camera: Add ZSL support for Samsung/Qualcomm cameras
Camera: Fixes Mako continues focus problem
Camera: Fix Smart Capture label display
Camera: TrueView Returns!
Torch: Don't show variable brightness options when using the camera iface
Torch: make torch to a real system app
Torch: add better error handling and added fallback mechanism
Settings: enable/disable lockscreenwidgets preferences
Settings: One does not simply become a Developer
Settings: add Device on Advanced Options for device-specific settings
Settings: fix quickpulldown summary and clean up code
Native: sensorservice: Fix init sequence for pre-1.1 API sensor HALs
Native: libs/ui: Fix crash issue because of null pointer access
Native: surfaceflinger: Set max acquired buffer count
Native: GlES2: Add NULL check
Native: sf: work around for no EGL_RENDERABLE_TYPE support
Telephony: Fix NT_MODE case statements
hungarian translations - Thanks to Zoltan
spanish translations - Thanks to Carlos
turkey translationgs - Thanks to docHD
Tons of fixes and upstream on all devices
fix icon distortion on power menu
fix navring ring distortion
updated dashclock and integrate it into the builds
fix for screenshot animation glitch in portrait
fb: fix and pimp custom lockscreen handle
QS: make dynamic tiles configurable
Properly handle null URIs
base: added national roaming info for Play in Poland
QS: enable haptic feedback and change Alarm tile longpress
Parse UUID string with Long.parseLong
core: added national roaming info for Free Mobile in France
Frameworks: Slim Shortcuts
Settings: Slim ES translations - thanks to Carlos
several kernel and device updates across all devices
Beta 1.6
update to 4.4.2
major cleanup on googles code
Quiet hours refactor and ringer mode
Slim lockhandle configurable
fix possible NPE on back button
fix statusbar background transition in certain cases
add for talkback content descriptions to navbar for ppl which are not able to see
fix notifications cut off on slim dpi
optimizing on image drawable handling
allow to disable QuickSettings completly
better Dialog handling on some places in Settings
show help dialog the first time the user enter a feature screen
fix keyboard crash on suggestions
music tile configuration options
battery tile new click/longpress behaviour
update NovaLauncher
update SlimIRC
a lot upstream and fixes over all devices
a bunch of optimizing and fixes in the base
​
Kernel Features
Linux 3.4.75
Intellidemand Governor [thx to Faux]
Voltage Control [thx to Faux]
Sound Control [thx to Faux]
Fast charge
Display Gamma control
SIO, FIOPS Scheduler
lots of fixes and improvement
support for flip covers
others I forget
Known SlimKat Bugs
Navigation bar recents button sometimes needs to be pressed twice
Lockscreen when carousel animation is enabled dragging the camera icon messes the animation
Known D802 Specific Bugs
Some games doesn't work
Animations are a bit laggy. Set Animations scale to 0.5x in Developer options
If you flash a custom kernel you will loose root!
Tell us!
Help us out!
If you want to help us by translating slim to your language check out Crowdin.net and submite your translations.
Or consider a donation.
Kernel and ROM Source: https://github.com/SlimRoms/
Credit list: http://www.slimroms.net/general-credits
Special thanks to @gmillz for making this possible on d802!!!
Also thanks to @arcardinal for maintaining the device!​
Kernel and other important device spec. changes
Beta 1.9
We went official! New weekly builds are going to be build automatically.
GPS fixed
In-call volume fixed
Compass fixed
Recommended settings
You can set via TricksterMod
Intellidemand governor
ROW IO scheduler
If you want to change DPI (density, "resolution" whatever you call it), try Texdroider DPI from playstore, set to 480 (g2 default):
https://play.google.com/store/apps/details?id=com.texdroider.texdroider_dpi​
Downloading right now!!! Thanks ?
thanks for developing this ROM, great to see developers giving the G2 some attention! cant wait for official release (beyond beta).
Great work
Sent from my LG-D802 using XDA Premium 4 mobile app
Was waiting for it from many days. Flashing now, hope no transition lag. Million thanks Dev.
Honestly, the nicest part about this ROM is that you have updated the UI to a more white-based scene, something Google should have done! But other than that it's all good, few things though;
1 - Couldn't find DPI settings.
2 - There is no "Clear all"button in the recents menu.
3 - Animation transitions (I know they're messed up everywhere on every ROM)
I'm running an LG-G2 D802-10B, probably doesnt help but i don't want some douche refusing to help because i didn't put my variant down haha
For me installation aborts by unofficial CWM. With PhilZ touch it's all ok! First impression is good! Thanks.
From what I read, there's no pie control yet right?
Installed on D803. Works perfectly. Has more features than most if not all 4.4.2. Thanks so much!
Sent from my LG-D802 using Tapatalk
Installed it last evening. So far, no issues, everything seems to work well. Anyway, I have to questions:
- is there any way to increase the overall resolution? I would prefer a bigger fonts ...
Anyway, I downloaded textdroider_DPI from Google Play and set the DPI to 423. Reboot and now it is like on stock ROM.
- the led notification is working or not?
Thank you!
I love slimroms since my old GNex. And now, finally we have slim on my D802. Stable enough given that it's still Beta version. Few customizations aren't there yet but I'm sure it will come soon. So far UI scrolling is smooth, no random reboots, pretty good battery life (initial impression).
Would like to know if D802 will be supported officially by slim team, though. Anyway, thanks to dev/OP for your hard work
Sent from my LG-D802 using Tapatalk
simorangkir_dcs said:
I love slimroms since my old GNex. And now, finally we have slim on my D802. Stable enough given that it's still Beta version. Few customizations aren't there yet but I'm sure it will come soon. So far UI scrolling is smooth, no random reboots, pretty good battery life (initial impression).
Would like to know if D802 will be supported officially by slim team, though. Anyway, thanks to dev/OP for your hard work
Sent from my LG-D802 using Tapatalk
Click to expand...
Click to collapse
This build was built by gmillz, slimteam member. His source will hit official repos soon.
Tapatalk-kal küldve az én LG-D802-el
Edit.:
Build hit official site yesterday:
http://www.slimroms.net/index.php/downloads/dlsearch/viewcategory/998-d802
During last night my d802 power on itself charging; like unofficial aokp. No modification to rom kernel. Did I make something wrong??
trombazucche said:
During last night my d802 power on itself charging; like unofficial aokp. No modification to rom kernel. Did I make something wrong??
Click to expand...
Click to collapse
Common G2 issue. Don not power off your device.
jameseytickner said:
Honestly, the nicest part about this ROM is that you have updated the UI to a more white-based scene, something Google should have done! But other than that it's all good, few things though;
1 - Couldn't find DPI settings.
2 - There is no "Clear all"button in the recents menu.
3 - Animation transitions (I know they're messed up everywhere on every ROM)
I'm running an LG-G2 D802-10B, probably doesnt help but i don't want some douche refusing to help because i didn't put my variant down haha
Click to expand...
Click to collapse
Try Texdroider DPI from PlayStore to change DPI easily
https://play.google.com/store/apps/details?id=com.texdroider.texdroider_dpi
trombazucche said:
For me installation aborts by unofficial CWM. With PhilZ touch it's all ok! First impression is good! Thanks.
Click to expand...
Click to collapse
Latest TWRP is recommended. Glad to hear PhilZ touch also works.
mgear356 said:
From what I read, there's no pie control yet right?
Click to expand...
Click to collapse
Right.
Oh my daaaays!! I don't want to flash a custom ROM lol. I'm running slim on my galaxy nexus & nexus 7. I think... It has to be done
Sent from my LG-D802 using XDA Premium 4 mobile app
bidi1985 said:
Installed on D803. Works perfectly. Has more features than most if not all 4.4.2. Thanks so much!
Sent from my LG-D802 using Tapatalk
Click to expand...
Click to collapse
M8 did you have lte working?
Sent From My LG G2
Some notes.
On pa_g2-4.0-ALPHA-20131205-d802.zip i can record audio calls with callrecorder from line. On yuor ROM can't.
I see a different audiolib's in system\lib\hw\audio.primary.msm8974.so and additionaly see system\lib\hw\audio_policy.msm8974.so
Yes slim kat on the g2, awesome news, whats the easiest way to root the g2?
grtz from crazy bastard from Holland on my G2

[ROM] [4.4.2] CM-REMIX for toro [ver_2.7.2][DISCONTINUE]

{
"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 ROM is a remix of the best options coming from famous team and developer: AOKP BEANSTALK CrDroid ChameOS CM MOKEE OMNI PA SLIM VANIR etc. with custom build kernel based on Imoseyon with cherry-picks options from ASKP, ezkeels,faux123, Fancy & Franco.
The maguro thread is here
Burstlam's rom is famous in china,from android4.0 to android4.4,even named "the best rom for maguro".
I just build one from sources for toro without any mod.
Thank you Burstlam!
KNOWN ISSUE and COMMON QUESTIONS
1. Don't dirty flash over it , get full wipe and clean before you update from other genius works.
2. Flashing kernels : 3rd party kernel that consist of CM ramdisk(ie flash with a boot.img image) is not compatible with this rom.
3. On restoring App with Titanium Backup: for those who switching roms all the time, it is recommend to wipe dalvik cache again with recovery.
dalvik cache generated by different rom build from different toolchains may not be compatible. You better do it prior to ART conversion.
4. If you flash SuperSu over this rom, pls checked "Enable su during boot" option in menu, otherwise, root privileges won't work
5. For dev reason I have switch adb logging on in developer options. Turn it off if you don't need it and somehow it save battery and
better performance.
6. Currently no proper ui restart function presents, dpi changes and some ui changes need to check the system ui restart option (under developer options) or even a reboot(using hot reboot option should work in most cases) .
7. Wifi Display Support : You need to check the option "Wireless display certification" under developer options to work properly.
ChangeLog
14th Feb 2014
1) Remove checks of SlimPie over navbar activiation (since we may active PA Pie or apps like mipop as alternative navigation)
2) Remove PA Tiles by adding PA Pies to SlimAction system, now we may add it with custom tiles, navbar buttons and power menu switch.
3) Fix Live Volume Steps bug.
4) Fix FC Chambers of Secret option in developer options.
13th Feb 2014
1) fix overlapping icon with centre clock
2) hopefully fix location service with GMS
3) Fix wakelock issue with sync manager (aosp)
4) Fix icon size mismatch with lockscreen handle and QS (slim)
5) Live Volume Steps (beanstalk)
6) Custom volume panel timeout
7) Remove not working FireWall
8) SlimPie give user ability to reduce trigger heights if IME keyboard shows
9) Apollo : Fix repeating of a song after the resume of playback service
10th Feb 2014
1) SlimPie official KitKat version (snappier, KK color theme)
2) Add Power Menu and Slim Pie Toggle to Power Menu
3) Slim Action move into slim shortcut (powermenu and screensleep action move to slim shortcut action )
4) OpenSource Google Dialer Rework (Slim)
5) Tweak Mms Input Box color visibility
6) Fix keep awake issue with battery info
7th Feb 2014
1) squashed update with Slim hw key rebinding, needed by slim qs shortcut and navbar 's actions.
2) Active Notification : add expand notificaton button to Lockscreen Notification (AOSPA)
3) port AOKP signal text and hide options.
4) Fix previous apps pop up when exist floating halo window with back button
5) Airplane toggle bug fix (CM)
6) navbar compatibility fix with xposed framework (SLIM)
7) Port Profile and Camera Tiles from CM
8) Edit Mms color scheme(JB style), fix linktext visibility issue. (To do: restore full kk scheme and compatibility with TRDS)
9) Lockscreen Notification Update and fix (vanir):
- show/dismiss all button (navbar)
- add back wake on notification option
- custom notification background color
10) Active Display Notification (vanir)
- attempt to fix pocket mode
- remove AM/PM as a preference
- fix navbar ghost issues
11) fix Lockscreen Sound delay
1st Feb 2014
1) pre-root with SuperSU v1.91
2) Mms : Cutomize Theme support port back from Teambaked jb4.2 (remove TRDS support to avoid issues.)
- customize text size and color, bubble theme style...
3)Add Double tap to secure Lockscreen (CM)
- pin and password: double tap the text entry view.
- pattern and GestureLock: double tap anywhere on the pattern view.
- add to slide lockscreen(glowpad): double tap glow pad to sleep
4) Add Xposed Framework and Per app Settings with hooks in Settings Menus.
5) Add Host File Switch Manager
6) Port Persist Installer from AOKP 4.4
Now settings like lcd density, xposed frameworks runtime and hosts file survived with dirty flash.
7) Fix navbar button glowing issue after slimpie merged.
8) Audio Theme Pack Support (Omni)
9) Appops update from CM
10) Dialer Suggestion and reverse lookup (omni rework version of open source dialer, using OpenStreetMap as search api, now reverse lookup working with US, CHINA and FRANCE)
11) Mms : wake on new sms/mms
26th Jan 2014
1) Custom Carrier Label Color
2) Merged with Active Notification from Vanir
(Vanir team cleanup Active Display and Lockscreen Notification, reworked sensor mechanism with lesser sensor calls and wake time)
3) Prevent Multi Window enabled if Halo present.
4) Port back Slim Pie from JB4.3
5) Add System app remover [Settings, Performance]
6) Remove add cpu boost hooks to touch event, check if these hooks related to instability.
7) Carrier label fix on first boot (slim)
8) Remove open source Google Dialer
22th Jan 2014
1) Fix autobtightness value failed on startup
2) use transparent when blur radius set to 0
3) LTE toggle Fix [slim], I have fix LTE button of power widget as well.
4) Smart Pulldown, behaviour tweaks from notification pulldown [slim]
5) Fix Expand Desktop Tile inconsistance and confirmation issue .
6) Fix non exist lockscreen targer at 1st boot (the green robot)
7) Keyguard widget fix and update [slim]
8) Quiet hours Ringer [Slim]
9) Sound menu setting adjustment
10) Drop opensource google dialer avoid possible legal issues.
By requset of engineer, keep this merge in order to gather more user feedbacks, please feel free to report bugs and limitations.
11) Implement Zram through fstab, according to AOSP style.
12) Drop init.d script for now for stability test, advice to use Trickster Mod to tweak kernel strings.
13) Bluetooth : upstream merge with CAF commit.
14) Dialer: fix text color with TRDS
15) ActiveDisplay: Shut down sensor with screenoff immediately
16 Double tap to wake (seems not working with us)
17th Jan 2014
1) Fix : revert OmniRom commits to active display which actually breaking it than fixing. Pocket mode and unlock should be issue solved.
2) Dialer : merge open source google dialer. (support google api)
Note : this a reverse-engineered work from a Chinese Developer, not sure if works worldwide.
I have test it for 1 day only , so far google id is working.
And I think user should beware that since the java classes and functions are exactly same with official google dialer.
User problay have to delete the google dialer in Gapps package to prevent crashes
3) pimp up notification label [slim]
4) don't refresh keyguard ui still refreshing when screenoff [aosp]
5) statusbar ui update fix [aosp]
6) fix altenative default app grid and allow to change default behavior as well
7) fix battery ring checkbox not sticking
8) screenoff battery saver mode to network connection : switch from pa implementation to vanir version,
which control wifi connection as well.
9) mms text color fixed.
10) Glowpad torch [slim]
11) port back Usb Fast Charge Tile base on slim4.3 commit
12) cleanup aosp / slim wifi and carrier label [slim]
13) Contacts fb contact support [slim+aokp]
DOWNLOAD :
ROM : HERE
NOTE 1: To get Root working normally, Please uncheck "Respect CM root settings" in SuperSU.
NOTE 2: On Custom Wallpaper with Mms: you cannot pick the pics with recent tab in DocumentUI, you need to browse your folder(swipe it out from left hand size and pick the actual location of the pic), otherwise you will get FC with it.
GAPPS :
RECOMMEND GAPPS PACKAGE FROM BANKS
PA version works fine with this, but u could get alternative options:
Gapps minmal version : HERE
Note: only with Play store and sync options, you need to download google options from play store by yourself. At least google search needed in order to avoid FC with in-app search...
ADDON:
GET LATEST SUPERSU FROM : HERE
Kernel (22th Jan 2014, compile with GCC 4.8.3 )
Embedded Version (PGM support) : HERE
md5: 925ee66ad51fff01c97bf1cae7b2e690
Alternative Touchwake Enabled Kernel : HERE
md5: 081dbde91b2cf7807f99ea5a0524cbb5
- support touch wake control in Google Play Store, choose " bponury stock mod" module when popup ask.
Mpokang Kernel with Tweaks (install script modified by itasoulas): HERE
md5: 1e2e20a68295eb9c7b072302965d71bc
Keyboard in Full Language and Dictionary(Dark theme and swipe supported) : Download Link1, Download Link2
Viper4 Android Sound : Download Link1, Download Link2
DSPManager will be removed
XLounder Mod : HERE
apktool 1.5.3 for TRDS 3.0 (windows version): HERE
Sweet!! Thanks for this. Downloading right now.
Sent from my Galaxy Nexus using Xparent Skyblue Tapatalk 2
Me too!
Sent from my Galaxy Nexus using Tapatalk 2
Love the lockscreen notifications. Very nice ROM nothing I'm missing at a all. Even has power widgets, a lot of ROMs are dropping them lately it seems.
Sent from my Galaxy Nexus using Xparent Skyblue Tapatalk 2
JustinXu said:
ChangeLog
Ver 1.9- 19th Jan 2014
Click to expand...
Click to collapse
This ROM from the future!
EDIT:
Google Drive link has teh error.
jbr05ki said:
This ROM from the future!
EDIT:
Google Drive link has teh error.
Click to expand...
Click to collapse
https://drive.google.com/uc?export=download&confirm=pP6U&id=0B9EFp1W1O3f2TkM3amxLSEZDeUk
Thank you, thank you and thank you.....
How does the smoothness/speed/lag compare to other KK ROMs
Thanks
?Turnt Up-KK Metal with THE best Audio Improvement Patch out there↔@Misledz Xlouder?
Sheetzie03 said:
How does the smoothness/speed/lag compare to other KK ROMs
Thanks
?Turnt Up-KK Metal with THE best Audio Improvement Patch out there↔@Misledz Xlouder?
Click to expand...
Click to collapse
Why don't you just nandroid and try it out instead of asking the same stupid question in every thread?
TheSwaggeR said:
Why don't you just nandroid and try it out instead of asking the same stupid question in every thread?
Click to expand...
Click to collapse
I challenge you to back up this accusations. I will try it but mind your own dam business.
?Turnt Up-KK Metal with THE best Audio Improvement Patch out there↔@Misledz Xlouder?
So far it is good. Awesome customizations. It didn't auto download apps. I am using pa gapps 12/30. And for some reason candy crush app says it is not compatible with device. Other than that this is great. Awesome job
Sent from my Galaxy Nexus using Tapatalk
Not a had ROM. I have it loaded now. Testing away.
Sent from my Galaxy Nexus using Tapatalk
this literally has everything anytone could ask for
it's like the Kate Upton of ROMs
.. except a little smarter
lol?
Root Explorer needs removed as its a paid app I believe. I own it anyways.
Sent from my Galaxy Nexus using Tapatalk
Sheetzie03 said:
I challenge you to back up this accusations. I will try it but mind your own dam business.
?Turnt Up-KK Metal with THE best Audio Improvement Patch out there↔@Misledz Xlouder?
Click to expand...
Click to collapse
You get onto everyone's case about every little thing in a lot of threads kid. I've followed several of your post and it will not be much of a challenge finding it all. You're a hypocrite.
Be thankful people continue putting out more ROMs for us to try out. No one is going to have your answer right away on a newly released ROM simply because it was just released and everyone's phone acts different from others.
So cool the jets and just try it out yourself.
Turd Furguson said:
Not a had ROM. I have it loaded now. Testing away.
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
What's up Turd burglar?
?Turnt Up-KK Metal with THE best Audio Improvement Patch out there↔@Misledz Xlouder?
Turd Furguson said:
Root Explorer needs removed as its a paid app I believe. I own it anyways.
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
Yes that what I did as well. just remove it, then reboot and install
Sent from my Galaxy Nexus using Tapatalk
Rom runs very well with battery usage.
Anyone know where to change from Celsius to Fahrenheit on the lock screen?
Sent from my Galaxy Nexus using Tapatalk
I removed that lock clock and installed a customized one that has better graphics
Sent from my Galaxy Nexus using Tapatalk
prbadboy69 said:
I removed that lock clock and installed a customized one that has better graphics
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
Do I need to redownload the ROM or is there something I can flash?
Sent from my Galaxy Nexus using Tapatalk

[ROM] [4.4.4] CM11-REMIX [gee] [DISCONTINUS]

{
"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 ROM is a remix of the best options coming from famous team and developer: AOKP BEANSTALK CrDroid ChameOS CM MOKEE OMNI PA SLIM VANIR etc.
The maguro thread is here
Burstlam's rom is famous in china,from android4.0 to android4.4,even named "the best rom for maguro".
I just build one from sources for gee without any mod.
Thank you @burstlam!
Options and Credit Author: (as much as I could remember ... )
In general this is based on CM's framework.
SLIM : Battery and Date options, Quiethours, Keyboard and IME, Lockscreen and Notification Shortcut, Navigation, Powermenu, Quicksettings, DPI Density Changer, TRDS
BeanStalk: Quicksettings, Toggles option, Profile Support , PowerMenu rework
ChameOS: ActiveDisplay, AppSidebar, Gesture unlock, Gesture Anywhere, Netstats, ScreenRecorder
Mokee : PhoneLocation and LunarCalendar Support (only available with Chinese Languages), Speed Dial, IP Call
PA & Carbon : HALO, PA PIE (custom modified, more buttons )
Maxwen: Suspend Actions, Wakelock Blocker, CPU overlays
OMNI: DSPManager Modification, Intrusive Incall options, end call sound
Vanir : Tweaks and debug options, Halo and notification boost
KNOWN ISSUES and COMMONLY ASK QUESTIONS
1. Don't dirty flash over if you update from other genius works. Make a full wipe before you flash.
if you are updating from an old version of this rom, dirty flash should be fine.
2. Flashing kernels : 3rd party kernel that consist of CM ramdisk(ie flash with a boot.img image) is not compatible with this rom.
3. On restoring App with Titanium Backup: for those who switching roms all the time, it is recommend to wipe dalvik cache again with recovery.
dalvik cache generated by different rom build from different toolchains may not be compatible. You better do it prior to ART conversion.
4. If you flash SuperSu over this rom, pls checked "Enable su during boot" option in menu, otherwise, root privileges won't work
5. For dev reason I have switch on adb logging in developer options by default. Turn it off if you don't need it and somehow it save battery and get better performance.
6. Currently no proper ui restart function presents, dpi changes and some ui changes need to check the system ui restart option (under developer options) or even a reboot(using hot reboot option should work in most cases) .
7. Wifi Display Support : You need to check the option "Wireless display certification" under developer options to work properly.
8. Statusbar Carrier Label popup no matter how : still looking around and not yet solved.
9. Certain apps not showing up in Play Store(e.g. Facebook,Beautiful Widgets) or shows incompatiblity error.
get a multi dpi Google play store from HERE.
ChangeLog
31st July 2014 (ver 3.0.1 bld1)
fix ListViewAnimation
31st July 2014 (ver 3.0.1)
1. art/libcore/dalvik
- A char array copy optimization
2. bionic
- update memmove for 32bits atomic
3. Filter Spam notifications (CM - privacy settings)
note : CM's implementation will override all notifications option (Halo, HeadsUp and Hover)
even you have remove assignment in settings table ,
it still block the notifications unless you turn off & on the notifications option again.
4. Fix MultiWindow conflicts after floating windows backpress fix.
5. Profiles
- add 4g as connection options for profiles (cm)
- Add Bluetooth A2DP profile trigger
6. Headsup Notification:
Show headsup at the bottom of the screen (slim)
add Slimactions (slim)
7. SlimRecents:
Custom Color Background
8. Settings:
Fix search highlight
9. InCallUI & Dialer:
More locale support to T9 search
Show extra contact details (aokp)
make imcoming call screen style configurable(cm)
make navbar translucent (cm)
avoid layout change on disconnection (cm)
10. Mms:
auto enable data (cm)
mms : mark as unread fix (cm)
storage full npe fix (cm)
17th July 2014 (ver 3.0.0 bld1)
- attemp to fix wake from screen off issue
- handle systemFC message properly with lockscreen state
- merge AOSP 4.4.4_r2 source
- fix duplicate statubar brightness control
- fix aicp weather view layout (empty space) on start up
15th July 2014 (ver 3.0.0 )
1. HEADSUP Notification
- rewrite, merge both CM and Slim's modification, apart from Slim's option,
now we have do not disturb and blacklist support from CM. (Settings option moved to gesture thread)
- add floating Window support as well (credits lion378)
2. Halo and Hover
- code cleanup and possible NPE fix.
- fix notification ticker count issue (credits Vanir)
3. Scroll Animation (Vanir)
- touchslop configuration
4. Quiet Hours
- add back option to diable system sound (camera shutter sound as well)
- Extra Daily Times (Slim)
5. Port AICP weather panel (based off TEAM EOS)
- I have rework the code , incorporate with AOKP panel and fix update view without UI restart (except the option with statusbar icon)
6. Active Notification
- Lockscreen Notifcation : squash update and fix (PA)
- rewrite activation code, use list preference to handle activation of Active Display, Lockscreen Notification and Peek. (only one should be activated)
7. Disable Immersive Message to power menu option
8. NavBar IME cursor : option to use Home/ End action (credits Der Schubi)
9. Attempt to fix LTE toggle in Power Widget
11th July 2014 (ver 2.9.9 bld4 )
- Swiftkey popup issue workaround (credits DirtyUnicorn)
- HeadsUp: Correctly add and remove the window
- fix NPE with missing soundpackage files
10th July 2014 (ver 2.9.9bld3 )
Fix Dalvik merge derp
Fix System UI crash with pattern lock set.
9th July 2014 (ver 2.9.9bld2 )
1. Fix Floating Window Mode.
- Correct wrong behaviour with back button pressed
- Fix possible NPE with press action outside float window.
2. Email
- auto fetch attachment with POP3 account
- fix save attachment to local disk with POP3 account
-
8th July 2014 (ver 2.9.9 )
1. F2FS &EXT4 all in one support by fallback file system handling (credits Team Motorola Mobility and MWisBest)
- just flash the rom no matter which file system you are using, no need to use base pack replacement anymore.
NOTE : For t0lte user : Only System, Data and Cache partitions support F2FS flags.
2. Volume Wake option fix
3. Swipe to lauch Floating Window with Recents (Stock view) and Notification (PA)
- swipe left/down to lauch Floating mode
- swipe helper
4. Hover performance improvements and updates (PA)
- Respect screen limits
- don't treat outside touch event.
- exclude from insecure lockscreen
- fix custom display timeout not showing
5. Quiet Hours Rewrite (slim)
- New Toggle States.
Toggle is now aware of if quiet hours is truly enabled or not.
Enable "force" mode on click: turns quiet hours on / off
Double-click to return to "timed" mode.
- New Features:
Wifi Connected Requirement
Battery Charging Requirement
Individual day times
- Completely rewrote quiet hours to reduce system calls.
No more calendar objects or checking three preferences
and comparing their values on each quiet hours check.
Reduce that to ONE preference check per preference
6. HEADS UP Notification (Slim)
it is a exposed version feature of AOSP L, simply like PA's Hover and modified by Slim.
- seperate control on Mms, Dialer and Email Client
- replace non-intrusive callcard with Incoming Call in background
- snooze timer support.
7. Settings
- Make settings searchable.
- show devices connect to Wifi hotspot
- Use actual storage type of sdcard/usb
- Show notification on adb over network
- App sidebar : fix icon label
8. OmniSwitch: added flat style
9. Keyguard IO and rotation improvement (vanir)
10. External SD card write permission fix
11. Android Lollipop Fonts
12. Apollo: Display the song duration in the queue and info views
30th June 2014 (ver 2.9.8 bld2)
fix wakelock issue with Google Service (CM)
30th June 2014 (ver 2.9.8)
1. Recents Panel
- sychronize blacklist option with floating window in settings thread
- Add HTC View Mod base on AOSB;'s IOS8 bubble info addon
- SlimRecents: Rework show top most task feature (Slim)
2. Hover
- Custom timeout
- do not process front activity by default (PA)
- Rework showing behavior on tablets
3. QuickSettings
- add Appsidebar tile
- add Halo tile
4. Dialer
- Dial keypad padding (Slim)
5 DocumentUI
- Implement DocumentsProvider.createDocument and deleteDocument (PA)
6. Settings
- Reset Battery Stat (CM)
- Hardware Key Button Backlight Control
7. SystemUI: Fix percentage charging color does not apply (Slim)
8. TRDS: Fix Volume panel background
9. Keyguard: update correctly track title and info if screen turns on (Slim)
19th June 2014 (ver 2.9.7bld2)
Settings : fix derp advanced Menu
update SuperSu to 2.0.0
19th June 2014 (ver 2.9.7)
1. Hover Enhancement (credits Der-Schubi)
- Master Switch enable and hidden option
- option to show up only if statusbar not existing
- QuickSettingTiles
2. Recents Panel rework
- optimize UI execution code (vanir)
- rework switching code base on Vanir's work
- add back HTC View mode
- update dependency logic with panel view option (All Clear Button, Rambar, Slim options...)in Settings menu
3. UserTile code update (CM)
4. Peek : sensor improvement
5. Apollo : external storage readable
6. Add UUID (re-)scan support for vold-mounted volume
7. Settings : remove More Settings Menu, move options inside to Display and Sound settings menu accordingly.
12th June 2014 (ver 2.9.6 bld3)
- update density changer
- add back font size control
- listview animation fix
11th June 2014 (ver 2.9.6)
1. Merged with AOSP source (android_4.4.3_r1.1)
2. PA HOVER
3. PA Peek
- support Peek APK
- rework blacklist interface (based on CRdroid )
4. LockClock : Fix YahooPlaceFinder Api Call
5. OmniSwitch: fix quick switcher derps
6. Lockscreen Notification: invisible clearall button when NonClearable Notification(Mokee)
7. Gesture Lock Security
- remove backgroud and use kitkat color scheme
8. QuickSettings:
- Port CompassTile (CM)
9. Lockscreen
- add unlock icons for Gmail and Snapchat
10. Settings
- Power Button to end call, move to hardwarekey thread
- Fix isPackageInstalled logic. (CM)
- PA PIE : fix dependency
4th June 2014 (ver 2.9.5 bld2)
fix unknown statusbar and navbar transprancy issue
update halo icon assets
3rd June 2014 (ver 2.9.5)
Kernel: bk14 beta3
1. squashed RAMspeed improvement from MpoKang
- Enable SCU Speculative linefills
- Tuna: set PL310 cache controller prefetch offset to 3
- Enable PL310 double linefill for Tuna board
2. OMAP4 : do not force workarounds for errata fixed in 4460
3. Update to BFQv7R2
4. Governor : Aggressive, Gallimaufry, Pegasusq and Lulzactive
5. IO scheduler : FIFO scheduler (ASKP)
ROM
1. Drop New Theme Engine
this gives nothing but battery eating and instability at this stage.
2. Launcher3
- Add hotword detection
- Gmail className activity update
3. Tiles:
- cleanup WeatherTile and fix NPE
- WeatherTile : show parsed Temp info correctly (depends on LockClock Settings)
- update EqualizerTile
- Pimp up QuickRecord Tile
4. App2SD support (for device with external sdcard)
5. Shake sensitivity adjustment (slim)
6. Fix hiding ADB notification icon (cm)
7. Slim Recents : option to show topmost task
8. Add Volume Control to SlimAction Shortcut
9. Dialer
- Transpatency Glowpad background (slim)
- fix flip action
- Pulse Torch on incoming call(slim)
- Fix reverseLookup (attend: we only accept US number msg)
10. Locscreen Notification : fix expand and clearall button behaviour (vanir)
11. Battery View Fixes (slim)
12. Halo : add boost hints support.
13. OmniSwitch : rework scroller fling
14. Experiment Gps improvement (mwibest)
15. Power Button Fast Torch (Vanir)
26th May 2014 (ver 2.9.4 build3)
fix circle app sidebar launch action
26th May 2014 (ver 2.9.4 build2)
1. roll back to stable bk13 kernel
2. remove PLD prefetch support and 32 bit cacheline flag which looks suspicous
3. revert several bionic updates picked from vanir builds
25th May 2014 (ver 2.9.4)
1. Kernel (beta 2)
- dm cyrpt update (cm)
- bfq v7r2 (remove for lockups found)
- TripnDroid IO
- cfq tunable tweaks (DirtyV)
2. Squisher script support.
png optimized and downsize by ripping off voicedialer and videoeditor
3. Xposed Framework hook rework
user experience issue whenever the app get update, so I dropped them by default and user please install it manually.
Once they are installed, xposed thread will shown up in settings menu
4. Wifi Display add sink and listen support (vanir)
5. QuickSettings:
- add back screencast tile
- port CM quickaccess ribbon (LiquidSmooth)
- Pimp-up QuickRecord Tile (slim)
6. Halo : bug fix
- match kitkat icon style
- no notification left, but swiping halo still launchs app after tasking
- halo button animations don't need to be processed if it's not enabled
- fix partial flip animation with halo button
7. Denisty Changer : swich to on the fly mode (slim)
now it is controlled by different sets of build properties, we should get rid of play store incompatible issue
8. Peek
- Peek wake timeout
- code update from PA upstream
9. Shake Events to Gesture lab and security (slim)
Shake to lauch action / program in keyguard and unlock.
10. Floating mode enhancement
- Enable Transpatent layer to Appcirclesidebar and recent panel
11. Add CPU boosting hooks to scrolling function
12. Allow All Widgets On Keyguard (slim)
13. New Theme Engine ( CM )
noted : lockscreen wallpaper color filled function removed to retain compatibility.
Wallpaper cropper is not function at this moment
13th May 2014 - ver 2.9.3
1. odex optimization and Enable PLD prefetch support and 32 bit cacheline flag
- even smoother and speed up response/startup time
2. Tiles :
- hidden Fcharge Tile if not support by kernel
- port WeatherTile (Dokdo Project, GwonHyeok)
- CPUFreq Tile (PAC.... oops... it need fixing on writing settings)
- port Equalizer Tile to dynamic tiles system (it show when you play media)
3. PowerMenu
- Add Mobile Data Toggle
4. Notification Contextual header (Omni)
5. DocumentUI (Evisceration)
- display external storage by default
- support apk installation
6. Halo (CRDroid)
- allow notification open in floating window or not
7 . Fix Notification Setting buttons intent
8. Allow showing second with Clock (Dokdo Project)
9. Slim Recents
- fix floating window mode
- add development shortcut (lion0738)
10. PA Pie : memory leak fixing and multi user aware.
11. AppCircleSideBar
- Custom TriggerWidth
- add back simple floating window mode
12. fix Carrier Label force showing up on boot (Vanir)
13. Store dialpad showing state (PA)
14. Settings:
- development tools: add animation scale util (cm)
- remove useless mobile plan (cm)
- Add default value for display color control (cm)
4th May 2014 - ver 2.9.2
1. Built with Linaro toolchain(4.9.1) and enable qcom bionic optimization. ! fasten your seat belt!
- Thx to vanir team fixes and LiquidSmooth team modification on build system.
2. Wallpapercropper fix with gif and bmp (aosp)
3. Hardware Key binding : Fix Long Press Action when screen is off
4. On the go mode (Nameless Rom)
- handle display orientation changes
- multiuser awared
5. [add force multi pane switch for Settings (NamelessRom)
6. Fix Remove Notification Logics with Halo and ActiveDisplay
7. Custom Color settings to statusbar icon (airplane mode, data, wifi, volume)
8. PA Peek & custom timout tweak (crdroid)
note: it is in preliminary stage, really a peek, only display once within timout after new notification comes.
9. Tiles:
- battery tile : open up setting thread directly with long click
- TimeOut Tile : long click action to stay awake
10. OmniSwitch
- add quick switcher
11. Add default value for display color control (CM)
12. QuickContact: onLongClick save item data to clipboard
13. Switch to Performance Control by Omni (/w carbon rom mod)
- less buggy and stable.
14. Driving Mode under accessibility option (Omni)
28th Apr 2014 - ver 2.9.1 build2
- add back Connection Manager (Telo Radio) , under battery saver option
- update apn conf.xml... hope this is the root of data connection issue.
- lockscreen shake security fix (slim)
27th Apr 2014 - ver 2.9.1
1. Squash commit : Animation Control
- Custom Animation Control (AOKP)
- Keyboard Animation (XuiMod)
- ListView Animation (Omni)
- Scrolling Animation (XuiMod)
- OverScrolling Animation and Effects (XuiMod)
-Toast Animation (XuiMod)
2. AppsideBar
- Really fix AppSideBar derp with changing side
- Notify if app not being install
3. QuickSettings Tile :
- Fix Advanced Custom Tile location_mode (slim)
- Custom Tile - add Global && Create Small API (slim)
- add text to LocationTile
- add batterysaverTile to slim action system
4. Fix long app name crash
5. Bluetooth :
- add accept all file option (omni)
6. Revert Multi-Window update which cause lockup and breaking swipe action with numerous apps
7. Attempt to address GPS issue
8. Settings
- Use Kernel Tweaker replace Performance from CM
- System app remover: add support priv-app apps (Dirty Unicorn)
9. notification drawer: custom clock & calendar shortcut (omni)
19th Apr 2014 - ver 2.9.0
1. Revert New Theme Engine commits with CM
- to get rid of instability issue for now
2. Revert suspicous commits that may causing data loss issue
3. ActiveDisplay : add force to show by shake action (OMNI)
4. settings: Make mobile settings a first-class citizen (CM)
5. Show package names during dexopt (vanir)
6. DocumentsUI: Allow open files instead of URIs (beerong)
7. Volumepanel: always show option icon (aokp)
8. DownloadProvider: DownloadManager: add support pause/resume/stop notifications
9. Standardize play store and browser download notifications (pa)
10. Implement SIM card management (omni)
12th Apr 2014 - ver 2.8.9 build 2
1. Merge with New Theme Engine (CM)
2. Fix Lockscreen Shake Security timeout option
12th Apr 2014 - ver 2.8.9
1. Remove suspend actions with battery saver option port from OMNI ROM
2. SlimRecents : user configurable default expanded mode (1/2)
3. Settings : proper dependency SlimRecents Style options.
4. Navigation Bar IME cursor
5. LockScreen Shake Security and timeout settings
note 1: Shake Action listener works with lockscreen only. (ie. Shake @ lockscreen to enable security settings.)
note 2: other than never timeout, only 30mins option work. Need time to digging up the reason.
6. Fix Lockscreen Rotation with quick settings
7. Fix CRT Animation
6th Apr 2014 - ver 2.8.8
1. update floating mode with multitasking (omni)
2. fix halo floating window closing anitmation
3. add float view support to App Circle sidebar
4. Fix multi user option
(I should have fixed most of the setting options but multi acc-user please reported if FCs occurred.)
5. Chambert String Edit (slim)
6. SlimRecents: Adress the 50ms touch unsresponsive issue
1st Apr 2014 - ver 2.8.7
1. Kernel
update bfq v6r2
attemp to fix WEP authorization.
2. QuickSettings: Camera Tile Layout alignment fix
3. Recents panel view : seperate AOSP stock and AOSP mod (reflection view)
4. speedup app switch speed
5. QuickHours Toggle fix (slim)
6. Squash AOSP update fix.
7. theme support to ringtone and profile picker activity.
8. Settings: integrate voiceplus to settings.
9. Package Installer : show current and new version (aokp)
10. Update SuperSu to v1.94
23th Mar 2014 - ver 2.8.6
1. bionic : libm: original optimized modf for [ARM NEON] (codefireX)
2. Circle side appbar (omni)
3. On the Go : Turn stop and start service if screen turns off and on
4. Keyguard - Create landscape Emergency Dialer
5. memory leak fix (slim)
6. QuickSettings tile : row back battery back tile onclick action
7. Frameworks : Fix possible ANR and navigation bar freeze (slim)
8. Framework: disable keyguard widget frame (1/2)
9. googlebackuptransport: fix for google backup and restore
10. Keyguard: Fix Pin-Layout (CM)
11. Change SQL to improve performance. (aosp)
12. Dialer : Open dialer code cleanup
20th Mar 2014 - ver 2.8.5
- Port On the Go Mode from Nameless ROM
merge flawlessly with slim action system, you may add it to power menu, navbar, navring.
- Deskclock : use random music as alarm (CM)
- Quiethours : automatic switch (Slim)
auto apply quiethours with vibrate or mute mode
- update volume wakeup option : (aokp)
prevent wakeup when receive AVRCP media keyEvents
- Active display: add timeout settings to shake event (omni)
- lockscreen logic fix
- Fix force close with app opps permission
- several fix merged from aosp
- chinese T9 support
17th Mar 2014 - ver 2.8.4
1. attemp to get rid of mysterious startup systemui force-close
2. Active Display : add shake gesture support
3. Slim recents: Add lefty mode and scale options
4. Quicksettings : add internal storage/memory tile
5. Lockscreen : more color support to lockscreen components.
6. Dialer : drop google api and update people lookup search api
7. Quicksettings : Change battery back tile onclick action
8. Notification Reminder update (slim)
9. OmniSwitch : gravity support
11th Mar 2014 - Patch2
- fix crash with custom lockscreen wallpaper
- Add touchwake control master switch and timeout settings (settings>display)
10th Mar 2014 - ver 2.8.3
1. Add Slim Recents
2. Move OmniSwitch to Slim Action system, we can have aosp , omniswitch and omni recent style play nice together.
3. Tiles Enhancement:
- all tiles can flip, and flip in 4 direction
- add haptic feedback control
- add swipe action support to location and music tile.
4. Active Display improvement (Omni)
- Add option Double tap to sleep
- Add option to show wallpaper blur behind active display
- Allow to show numbers of notification on Handle
- add battery circle around handle
5. Custom Lockscreen Wallpaper
6. Identicons (Chameleonos)
7. Add Smart Pulldown to Slim Action system
8. Notificaition Remnider layout fix (Slim)
9. Fix display user photo (CM)
10. Add Turn off action to Open networks notification (AOKP)
11. Add Turn Tethering off action to wifi and usb tethering notifications (AOKP)
12. Performance : GPS optimizer (country sting changer)(AOSB)
13. Add HTC reflection style to stock recents view (AOSB)
14. Remove debug with notification panel, hopefully get rid of notification lags.
2th Mar 2014 - ver. 2.8.2
Kernel : bk-13 pre-release 1
Built with @metalspring 's custom optimized- Linaro 4.7.4 toolchain -O3 optimized, graphite , link-time opt
Add Adaptive, Dyna Interactive, Hyper Governor Sakuractive from Fancy , Intelliactive from FAUX
ZBUD and ZSWAP (DirtyV)
Update ZRAM and ZCache with LZ4 Compression support
Fix Active Display Brightness Mode
Fix FC with Default App Grid Options (won't enable at the same time)
NetTraffic Rework (by default authhide, add a simple text view style regarding download speed only.)
Expand Desktop through Profile setting (CM)
[1/2] Speed up booting on multicore devices. (CM)
Notification Reminder (Slim)
Settings: Fix Color Control settings not sticking with Reboot
Increase promxity senor update interval. ie. improve sensitivity with Direct Call function
Fix Power Shutter Exception (CM)
23th Feb 2014 - ver. 2.8.1
1) hide statusbar battery icon
2) dialer: prevent touch to wake in phoneUI (oncall screenoff) when touchwake /PGM enabled (base on AOKP)
3) Power Shutter NPE fix (cm)
4) Force highend GFX option (you won't get it for we are running in highgfx mode already)
5) dalvik and libcore leaks (AOSP)
6) stock Recents panel view: force clear caches on longclick
7) Active Display Rework
- fix derppy pocket mode
- partially fix unlock action
(so far I did work out a workaround that need to reset lockscreen state. ie. you will get a normal lockscreen view in transition. )
- add back sun light mode and turn screen off option.
8) Security Settings: Add multi user enable switch.
note: since there are numerous option not yet fix with multi user support. FC are expected with multi user.
9) Fix Statusbar Carrier Label option doesn't stick with reboot.
10) ramdisk tweaks based on DirtyV picks (portion done by franciscofranco, ak, boype & osm0sis + Franco's Dev Team).
DOWNLOAD :
gee
GAPPS :
RECOMMEND GAPPS PACKAGE FROM BANKS
PA version works fine with this, but u could get alternative options
THANK TO:
-Burstlam for no reason
-Xboxfanj for helping me and his awesome kernel
-spleef for his gee-base cm device tree
Running good so far. Lots of options! I knida like this one. Thanks a lot. Hoping the battery holds out. Pretty early yet to tell but setup went smooth and haven't ran into any issues yet. Thanks again
Sent from my LG-LS970 using xda app-developers app
Pretty cool rom. Good features, but not over done. It's hard getting used to cache menu not being available with long press home button, but slim pie fixes that. Great job man
Sent from my LG-LS970 using XDA Premium 4 mobile app
Oh yeah! Good job man!!
Sent from my LG-LS970 using XDA Premium 4 mobile app
k5t4j5 said:
Pretty cool rom. Good features, but not over done. It's hard getting used to cache menu not being available with long press home button, but slim pie fixes that. Great job man
Sent from my LG-LS970 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Yeah I thought so too. But there is a setting in hardware buttons and u can remap recent to the longpress home button.
Sent from my LG-LS970 using xda app-developers app
---------- Post added at 03:58 PM ---------- Previous post was at 03:47 PM ----------
Double-tap to wake doesn't seem to work for me. Might have been mentioned but just letting u know.
Sent from my LG-LS970 using xda app-developers app
What cpu driver do we install for viper4android?
Kippui said:
What cpu driver do we install for viper4android?
Click to expand...
Click to collapse
CortexA8 with NEON is suggested in the optimus de thread so it should be good for this I would imagine.
Sent from my LG-LS970 using xda app-developers app
Day 1 update: I am LOVING this rom and no lags/SoD yet.
Same here man. I can't believe this isn't getting more attention. There are settings and options with this that I've never even seen b4. And it seems like they all work. Besides dt2w. This ROM is sweet
Sent from my LG-LS970 using xda app-developers app
Someone show some screenshots
Sent from my LG-LS970 using xda app-developers app
Some battery use
Sent from my LG-LS970 using xda app-developers app
bowhunt2005 said:
Some battery use
Sent from my LG-LS970 using xda app-developers app
Click to expand...
Click to collapse
Holy hell. What was your screen on time?
Sent from my LG-LS970 using XDA Premium 4 mobile app
k5t4j5 said:
Holy hell. What was your screen on time?
Sent from my LG-LS970 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Sorry I didn't look at it but I'm sure it was at least a couple hrs. I'll try to test it out some more and post both screens
Sent from my LG-LS970 using xda app-developers app
Loving this thing! I sure did miss pa pie. I only have two questions...do you plan on making the status and nav bars transparent? And is there a kernel that works well with this bad boy that will allow for color calibration? I'm sorry to ask...
Thank you!!!
What's this about? NOTE 1: To get Root working normally, Please uncheck "Respect CM root settings" in SuperSU. To get root working normally...... This bothers me and confuses me a little. To many things. So if I flash the normal way wipe wipe wipe and flash I could have root issues
Jamesredmond82 said:
What's this about? NOTE 1: To get Root working normally, Please uncheck "Respect CM root settings" in SuperSU. To get root working normally...... This bothers me and confuses me a little. To many things. So if I flash the normal way wipe wipe wipe and flash I could have root issues
Click to expand...
Click to collapse
I didn't do any of that and everything is working fine. Restored TB stuff just fine. Just install rom -> g apps -> restore **** -> wipe davlik then you are good to go.
Edit: Didn't mean to quote guy above me.
Getting a "Unfortunately Phone has stopped." error every time I try to load this up. Any ideas? Tried with PA gapps, CM gapps, and no gapps at all...
Tried redownloading ROM. Same error.
Don't know if it matters but I used cwm to flash it. I also didn't have root issues but did go into su setting and unchecked the box anyways
Sent from my LG-LS970 using xda app-developers app
F*ck yeah! I was almost downloading this from e975 until I found this one for my phone!
I know I'll love this!

[APK][3.3.0]Fast App SwiTcher Small App - MM Bugfix + Back Key = Minimize

Fast App Switcher Small App
Wanna Help Translate? Download this and mail back to me!
{
"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"
}
Hey Guys, First timer doing the Sony Small App here hope you like my app
Ever tired of doing two click just to switch apps? Or are you losing focus on what you've just read because of that black Recent App switcher background? Or that app switcher button is too far away? Not anymore with this Small App
Feature:
Always On the Foreground App Switcher
Slim Design Just Like Windows Taskbar
Auto Update App List with Adjustable seconds
Adjustable Number of Viewable Recent Apps
Keep Order of Recent Apps For Easier Navigation
Swipe Down to Refresh the List (just like Gmail) - Vertical Layout Only
Ability to choose Horizontal/Vertical Layout
New! You can choose Favourite Apps List Or The Entire Apps List!
Pin/Unpin the Small App so it will automatically minimize after losing focus.
Load at startup (For Sony JB ROM and up)
Switchable App Mode (So you can have Favorite Only, or Recent Only, Or Both)
Small Apps can be tagged as Favourite App!
Web URL can be added as Favourite App too! Click Share on Your Browser and then add away.
Context Menu for each App Listed (show App Info + Direct Add App into Favourite)
Long Click Switcher Button on Fav: Change Ordering of Favourite App
Long Click Switcher Button on Recent: Suspend All App Memory / Go Back To Previous App
Icon Pack Support (Pro Version Only)
Requirement:
Sony Small Apps enabled Firmware
Image Preview:
Interested? Please access the Following Play Store URL:
https://play.google.com/store/apps/details?id=com.hansip87.smallapp.recentapp
CHangelog: http://forum.xda-developers.com/showpost.php?p=52022756&postcount=6
Credit:
lukehorvat for NumberPickerDialogPreference - http://www.lukehorvat.com/blog/android-numberpickerdialogpreference/
robobunny for SliderPreference - http://www.robobunny.com/
lucasr for TwoWayView - https://github.com/lucasr/twoway-view
meetme for HorizontalListView - https://github.com/MeetMe/Android-HorizontalListView (Unused Now, But Credit is still Due)
Sony for Promoting on Sony Select
Any input / bug report just post it down here :good:
Like it? Go grab Play Store version and if you like it and want to unlock all feature, just click the Buy Pro menu available inside the settings menu
Hey XDA people, Do you want pro version? Please PM Me to grab one
Great idea!!! And nice work om :good:
Will try it now
Woow the legend Coming
Will try your hand made ASAP
this is fXXking cool:victory:
This is awesome man! Just one thing, since in using ZL and it has smaller screen than ZU. It would be better if you let it to change size horizontally too. The buttons are really close to each other. CHEERS!
CHANGELOG
Changelog:
1.5.5:
Fixed On Preference Change Behavior
Added Width so horizontal buttons more pressable.
1.6.0 (20/4/14):
Added custom UI and transparency
New UI options
Added Option to view all Recent Apps just like the stock Recent App contain.
1.6.5 (21/4/14):
UI background tweak
Duplicated Recent App Fix while Keeping Order of the Task
Additional Minimize and Fit to Window button
Reduced Size of APK
1.7.0 (22/4/14):
Fixed FC on clicking Closed by System App
Added Horizontal Mode
Code Cleaning Up
1.7.1 (22/4/14):
Minimized Battery Usage on Automatic Refresh
Horizontal Layout Streamlining
1.8.1 (26/4/14):
Added Favourite Apps Oprion
Setting Streamlining
Fixed One Package Multi Activity Launch Event
Added Click Sound (based on System Setting Touch Sound)
1.8.2 (28/4/14):
Compatible with ICS Custom ROM of Xperia 2011 device running Small App framework(API SDK 14)
Minimized View Icon changes dynamically based on state of Recent/Favourite Mode
1.8.3 (29/4/14):
Recoded so (hopefully) no more memory leak when the Small App got restarted.
Tweaked Background with Shadow on all sides
Favourite App Switcher background now are set up as inverted from selected background color.
1.8.5 (30/4/14):
Added Pin/Unpin capabilities. Make it easier to minimize it automatically when you're not focusing on the Small App anymore.
Added Loading Animation on Loading at First Time
Cleaned Up Menu Layout
1.9.0 (6/5/14):
Tweaked Method to do Auto Update so even less battery drain and more flexible with device state. (Using Handler rather than Timer)
New Indexing guarantee A closed application to be able to be opened again
Slightly Smaller Icon Size so it matches the other Small Apps icon size.
Might be the Final Version of this app Will be putting it into Play Store once i have registered into them.
1.9.1 (9/5/14):
Changed Name to Fast App Switcher following the new Switchable App Mode
New Small Apps Icon, in sync with Sony Small Apps standard icon
Switchable App Mode, So you can pick what you like
Load at Startup (For Sony JB ROM and up with Small App Framework v2++)
Tweaked On Reverse App Order in Vertical Mode.
1.9.3 (11/5/14):
Added Other Small Apps List into Favourite (Selectable Too)
Dimmed Minimized Icon if Preffered
Cleaner Memory Management on App Closing
1.9.6 (15/5/14):
Minor Code Speed Enhancement
Added Auto Restart On List Orientation
Added App List Style Mode (Icon Only, Icon with Label, Label but with Background Colorized from Icon)
Added Context Menu On Long Click of an App Items
Show App info from the Context Menu
Directly Add/Remove Apps into/from Favourites within Context Menu (Only work if the Favourite App Mode is enabled and only showing some Favourite Apps. Otherwise, it won't be listed)
Tweaked Horizontal View Scrolling
Last Component Width is now stored so it will be retained when the Orientation is Changed.
1.9.7 (19/5/14):
Asynchronous Icon Loading and using LRUCache, Make it less stutter-y on long list and more efficient while scrolling
Auto change Setting Activity Theme on changing Background Base Color
Tweaked Context Menu appearance, much more professional
Added Faded Edge on ListView appearance, make it more natural to look at.
2.0.0 (20/6/14):
Reverted Back to Synchronous Loading, Trade between scroll delay and user visibility of app icon
Tweaked LRUCache to load icons before requested.
Added Icon Spin Effect on Click
Added Suspend App From Memory option (This won't remove App from List, it only kill the background process of the app so memory is released)
Long Hold on Switcher to Suspend all App on Recent Task
Uploaded into Market, with IAP feature baked in.
Fixed Unclickable App Icon due to error. Now all recent task icon can be accessed.
2.0.1 (20/6/14):
Fixed IAP behaviour. Should be working as expected.
Bugfix based on ANR report. Need some more report from you guys though.
Revamped Refresh Method. Should Work as expected.
Fixed Bug where one cannot remove an App from Favourite Apps Mode while going into Context Menu
2.0.5 (30/6/14):
Fixed IAP behaviour. Should be working as expected. With offline flag.
Added Favourite Apps Ordering Option based on user interaction
Added Home Launcher icon so novices can notice the app.
Added Dim Inactive Apps on Recent App mode.
Added Long Click for Toast options on panel buttons.
2.0.7 (2/7/14):
High CPU Load while visible is fixed
Free Version got some of the Pro features!
Added Launcher Icon to make it easy for Novice to get this App.
FC on Previous ROM of Jelly Bean fixed.
2.0.8 (2/7/14):
Minor Tweak on Ordered Recent App, that it will scroll back to the latest position after the list got updated.
2.1.1 (17/7/14):
NEW! Added Web App Shortcut Link So you can browse Website From Fast App Switcher instantly!
Revamped Method on How Internal Engine works. Should be alot smoother for Long list of apps.
More efficient Memory usage with variable cache size dependent of phone RAM
Bugfix based on the report
This version requires Internet Permission to allow caching of Web Thumbnail from WebViewer. No other web operation is used.
2.1.3 (22/7/14):
Added an Option to show Home as one of the Recent Apps
Added Activity Launch Animation to originate from the icon you have clicked
Better Scroll State saving, so you don't have to scroll again on click
Long click on Favourite Mode Switcher to change Favourite Apps Order (Pro Only)
2.1.5 (24/7/14):
Added Compact Mode So the List doesn't take as much space as it was
2.1.7 (5/8/14):
New Animation On Switch App Mode
Added New Option to Go Back to Previous App By Long Clicking the Switcher Button (Switchable with Suspending All Apps default)
Bugfix based on the Report
Controlled Toast Message so no more queue
2.2.0 (13/8/14):
Pro Version: Icon Pack Support - Nova/ADW/Apex Compatible Icon Pack!
More Memory Efficient
Bugfix And Performance Enhancement
2.2.1 (20/8/14):
Complete Icon Pack Support, Specific Icon Customization Enabled!
More Adaptable on Low Memory Environment, Less Chance of Soft Force Close
Bugfix And Performance Enhancement
2.2.2 (22/8/14):
Bigger App Label on List View
Better Icon Pack Resource Handling
Even More Low-Memory-Device Friendly
Fixed Issue with Icon Pack not loading the proper back icon.
2.2.3 (5/9/14):
Loading Animation turned on while retrieving data after Low Memory Situation
Lower memory consumption while using Icon Pack.
Length/Height of App Window is stored individually depending of the orientation of the screen. No more resize after rotating the screen.
Option to launch App from Android Launcher(again)
Improved Performance On Low Memory Situation
Database Bugfix
Tweaked Icons
2.2.4 (17/9/14):
Minor Performance Improvement
New Background Style
Now App size can be stored correctly
Ability to reset Favourite Apps Usage Count per App
2.2.5 (1/10/14):
Added Spanish Translation
Added Fast Scroll on GridView of Icon PAck to have faster icon searching
Fixed Activity keep popping up while doing another transparent activity
2.3.0 (8/10/14):
Even Slimmer Compact Mode
New Icon on Switcher to match Navigation Bar Buttons
Added Navigation Bar Buttons Option (PRO Version only)
Long Click on Back Button will bring down Notification (PRO Version only)
Long Click on Home Button will bring Google Now / Other Assistance Set as Default (PRO Version only)
2.3.5 (31/10/14):
NEW! Manual Favourite Apps Ordering (PRO Version only)
Tweaked First Dialog Styling
Setting UI minor tweak
2.3.6 (2/12/14):
Minor bugfix
Tweaked Description on Fav Apps Description
2.3.7 (3/6/15):
Tweaked Label Only Mode (now with Icon as background)
Tweaked ListView code
Tweaked Setting Activity
Lollipop compatible.
2.4.0 (3/9/15):
UNLOCKED "ICON VIEW MODE" PRO VERSION FOR ALL: Now Icon Only and Tilted Icon Mode is available for free!
Fixed Activity Lifecycle issues and Small App Launching steps.
Tweaked codes.
2.4.5 (15/3/15):
1. Better App switching on Home, No more unresponsive click on Recent Mode!
2. Switch Places Animation so more natural in switching
3. Reworked Code, more efficient
4. Faster icon loading for Navigation Bar and Switcher so they won't get reloaded on low memory
2.5.0 (7/4/15):
1. Lollipop Build, Material Design tweak
2. Revamped Setting Menu
3. More Vivid Background Color of App Icon
4. Workaround for Lollipop Recent App Limitation (need testing from you guys)
2.5.1 (14/4/15):
1. Tested And Ready for Lollipop!
2. More freebies for Free Version (Favourite App Mode All Feature Unlocked)
3. (PRO Version) Added Dialog that will ask whether the user want to restart the small app on close or not.
2.5.4 (23/6/15):
1. Setting Activity Leaking issue fix
2. Input for failed launch app
3. Added Purchase and Rating button on Toolbar
4. More pronounced alert for Lollipop users when starting the app to activate package usage access.
2.5.5 (7/8/15):
1. Fix: Crash on Android 4.x devices when switching apps
2. Fix: Various Crash and Bugfixes
2.6.0:
1. Tweak: Build With Android M SDK
2. Tweak: Added Prefetch Icons for faster recognition after scrolling
3.0.0:
1. Now with SHORTCUTS! You can attach Favourite Contacts or Jump Playlist instantly from Favourite Apps Mode!
2. New Icon to follow Sony Xperia Small Apps Iconography.
3. Tweaked Web Apps icon capture method.
3.0.1:
1. Fixed Malware Alert on some Anti Virus
2. Fixed Sorting Issue with Shortcut
3. Fixed Shortcut Issue Addition Method on Android 4.4 and below
3.0.2:
1. Fix: Crash on Contacts Shourtcut
2. Tweak: Main icon tweaked.
3.1.0:
1. Transparent Background on Minimized View
2. Convenient Menu to Pick Favourite App, Add Web App, and Shortcut from More button
3. Tweaked Favourite Apps Setting Menu
4. Tweaked Navigation Bar Button Action to adapt to Small App standard behaviour (PRO Feature)
5. Updated Navigation Button to Lollipop style.
3.1.1:
1. Translation: Added Chinese(Simp) Language (Thanks to Bznian)
2. Fix: Minor Bugfix
3.2.0:
1. Bugfix: while showing dropdown menu with auto hide enabled, the app will not hide.
2. Bugfix: setting response behavior fix
3. Feature: shortcut option for launcher is added
4. Tweak: denser layout for icons.
3.2.1:
1. BUGFIX: Crash on Favourite
2. TWEAK: No More Double Click Sound on Clicking Item
3.3.0:
1. BUGFIX: Android Marshmallow Full Compatibility
2. TWEAK: Clicking Back Button on Android Navbar will minimize Small App Window
very interesting..... recent apps switcher over recent apps
gonna try.....
The APK has been updated to 1.5.5, Changelog:
- Fixed On Preference Change Behavior
- Added Width so horizontal buttons more pressable.
@hansip87, mate is this working on 4.1.2?
Simply brilliant! Working fine on C6603, just what I needed.
Sent from my eXposed C6603
slink722 said:
@hansip87, mate is this working on 4.1.2?
Click to expand...
Click to collapse
Yes, The Minimum is 4.1.2 (which was when Sony started the SmartApp SDK)
Good work!
Sent from my LT25i using XDA Premium 4 mobile app
Very good! lool
Abraços!
Enviado do meu XZ1 usando XZ1 Sensation by Ogunja.
Se a minha ajuda foi útil, basta clicar em thanks!
Cool! The one thing I missed from my Wimmobile days is that I can switch between apps quickly by pressing the icons on the notification bar(Taskbar?). As shown on below page. Strange that nobody had done that on android. This is the next best thing!
http://www.freewarepocketpc.net/ppc-download-wktask-v1-1-7-3b.html
Will be even better if there is an option to adjust the width of the "windows" to make it less obtrusive.
Thanks!
Some suggestion/issue:
1. Can you make small apps to have transparent background always? After you select one of the task, the small app background stay opaque until you tap the running application.
2. Is it possible to have button to minimise the small app into floating small icons? (similar to selecting minimise from the notification windows)
3. I don't know whether this is by design, but when you open up the phone application and then touch back button, it will remove it from the small app. If you open up the task swithcer however, it will still listed phone app as the most recent one.
PS: Love your mod for Xperia Ray (I still used your system ui mod for ray) :good:
trewelu said:
Some suggestion/issue:
1. Can you make small apps to have transparent background always? After you select one of the task, the small app background stay opaque until you tap the running application.
2. Is it possible to have button to minimise the small app into floating small icons? (similar to selecting minimise from the notification windows)
3. I don't know whether this is by design, but when you open up the phone application and then touch back button, it will remove it from the small app. If you open up the task swithcer however, it will still listed phone app as the most recent one.
PS: Love your mod for Xperia Ray (I still used your system ui mod for ray) :good:
Click to expand...
Click to collapse
1. Well if i can override the theme of sony small app built in theme it should be possible.
2. It is possible but it will take a space if i put it just like that into the header. Unless i make it as horizontal list (which need some time to try).
3. Yes it was my intention to remove all closed app from the menu. In the stock Android setting, the Recent Apps will always store the closed application, so the next time you open it, it will not move the existing task to the front, but start a new activity for it. What i did was to remove all the closed apps, so to reduce the recent apps number there. But that's a good suggestion, i might add an option to fix that.
Sent from my C6802 using xda app-developers app
New Version 1.6.0 is uploaded! Changelog:
1. Added custom UI and transparency
2. New UI options
3. Added Option to view all Recent Apps just like the stock Recent App contain.
Ps: the UI in fact can be docked to the edge of your screen as i found out. Just double tap the move button and then drag it into the near edge of the screen, preferably at the right
Edit: It is recommended to turn on showing running apps. There are some undetected bugs with some Google apps of you leave it unchecked. Will inspect later. In the mean time stay with showing Running Apps only.
1.6.5 uploaded! Changelog:
1. UI tweak
2. Duplicated Recent App Fix
3. Additional Minimize and Fit to Window button
1.7.0 is out changelog see OP.
@hansip87
kinda offtopic question this but how do you get those 6 icons next to eachother here?:

Categories

Resources