[Xposed][MOD] CM Options - Missing CM settings [4/7/15] - Xposed Framework Modules

This is my first ever Xposed module which consists of several CM options / settings that are otherwise missing, but I find useful. This module has been tested on my personal device (Google Nexus 5) running the latest CM nightlies (hammerheadcaf - 4/3/2015).
The options within the module include:
Enable call recorder - Allows option in overflow menu to turn on call recording for the current call
Hide volume boost - Hides/displays the volume boost button
Automatic proximity speaker - Turns on speakerphone automatically when in a call and proximity sensor detects you have taken phone away from your ear
Proximity speaker delay - Sets a delay (ms) before turning on/off automatic speakerphone
Only while in call - Only turns on spearkerphone after recipient has answered the call
Hide superuser icon - Hides/displays the # superuser session active icon in the statusbar
Debug logging - Turns on basic Xposed module logging for this module
Changelog:
4/2/2015 - Initial release
4/3/2015 - Updated CM call recording code to force resource loading and set audio source
4/7/2015 - Redid CM call recording to force it on if enabled, small UI config tweaks and logging
Installation:
Download / Install attached APK
Enable module in Xposed Installer
Turn on settings you want
Reboot

Do I have to have CM for this to work? Or can anyone use it?

terrorist96 said:
Do I have to have CM for this to work? Or can anyone use it?
Click to expand...
Click to collapse
maybe its only for cm

works in lollipop??

Hi
Looks like does not work on CM12.

Call recording isn't showing up here, with the Xposed Module "EnableCMCallRecording" it works fine however. CM12 20150402 nightly.

terrorist96 said:
Do I have to have CM for this to work? Or can anyone use it?
Click to expand...
Click to collapse
No sorry unfortunately it only works for CM12 based ROMS.

jayaraj.chinna said:
works in lollipop??
Click to expand...
Click to collapse
Yes, I have geared the API version of the module so that it will only run with minimum Android API version 21 (Android 5.0)

Publiuss said:
Hi
Looks like does not work on CM12.
Click to expand...
Click to collapse
You have turned on/off the settings you want, and nothing happens? What particular function does not seem to work?

XlAfbk said:
Call recording isn't showing up here, with the Xposed Module "EnableCMCallRecording" it works fine however. CM12 20150402 nightly.
Click to expand...
Click to collapse
My approach to to enable call recording simply was to attach to the recording service "isEnabled" method and override the return to be always true, if enabled in the settings. I will push an update to attempt to override the resource loading on the boolean flag, which is based on country / region values. But it seems like overkill to me. I will also explicitly attach the current voice call as the audio source. Please let me know if this works.

Nice, can do you add „Navbar height“ Settings?

art.montesinos said:
You have turned on/off the settings you want, and nothing happens? What particular function does not seem to work?
Click to expand...
Click to collapse
Well i set call recording, no button appears, I tried speakerphone when phone is far from the ear, it does not activates...
When I was on a CM11 nether "cm call recording" module worked (button appeared but no working registration).
I own a Sgs2 plus and resurrection remix 5.0.2 ROM.

Can you add advanced reboot menu? By the way nice module there!

FantasticalX said:
Can you add advanced reboot menu? By the way nice module there!
Click to expand...
Click to collapse
CM already has an advanced reboot feature. You do not need Xposed for that.

Publiuss said:
Well i set call recording, no button appears, I tried speakerphone when phone is far from the ear, it does not activates...
When I was on a CM11 nether "cm call recording" module worked (button appeared but no working registration).
I own a Sgs2 plus and resurrection remix 5.0.2 ROM.
Click to expand...
Click to collapse
As for the call recording the UI is different in CM12 vs CM11. When enabled in CM12 you have to click the overflow menu (3 dots ...) And you should see a menu item to record the current call.
For the speakerphone issue I am at a bit of a loss. Could you try to get me a logcat of what if any errors are occurring? Is resurrection remix CM12 based?

RevUnix said:
Nice, can do you add „Navbar height“ Settings?
Click to expand...
Click to collapse
I can try this week to add some new features. Modifying the navbar might require hooking into resource methods which gets a bit tricky. I am just learning this as I go. But I will definitely give it a shot. It would be nice if CM12 did have more Navbar options.

Is there any way to enable call recording without using Xposed?

which xposed framework are you using guys? the one I have is not working properly, I have many faulty modules which are supposed to work on lollipop.

dafank said:
which xposed framework are you using guys? the one I have is not working properly, I have many faulty modules which are supposed to work on lollipop.
Click to expand...
Click to collapse
I am using Xposed framework alpha2, version 3.0 for lollipop.

harpin14789 said:
I am using Xposed framework alpha2, version 3.0 for lollipop.
Click to expand...
Click to collapse
I guess you mean this one http://forum.xda-developers.com/showthread.php?t=3034811 which is the one I'm using
have you tried cputemp or cpufreq in status bar modules?

Related

[MOD] No Wake On Charge v0.3.1 [TW/S5]

No Wake On Charge keeps screen off when usb/charger cable is plugged in or unplugged. This module works fully only on Samsung Galaxy S5 as it uses non standard (AOSP) way of waking up the display.
I tried to use various other Xposed modules but none removed the plug in wake.
It works like this:
Screen wake on plug in - changes android.os.PowerManager#newWakeLock(ACQUIRE_CAUSES_WAKEUP | SCREEN_BRIGHT_WAKE_LOCK, "charger plug") to PARTIAL_WAKE_LOCK only (based on fix by @tdunham http://forum.xda-developers.com/showthread.php?t=2799050). Again, this is S5 only fix.
Screen wake on unplug - sets config_unplugTurnsOnScreen to false (this is well known and used solution)
Beep on plug in - disables com.android.systemui.power.PowerUI#playSound(1)
There are few more hooks in versions 0.2 and higher (supports wireless charging as well).
This (old) module is designed for Samsung Galaxy S5 running stock Android 4.4.2. If you need compatibility with newer version of Android, use this module: http://forum.xda-developers.com/xposed/modules/mod-xposed-tweaks-cm-t3279109 which works with Android 5.0 (and newer once released).
Great job! Finally my T-Mobile note 3 running X-note doesn't wake up when I plug the charger. Only module that works on touchwiz and I've tried them all.
moneytoo said:
No Wake On Charge keeps screen off when usb/charger cable is plugged in or unplugged. This module works fully only on Samsung Galaxy S5 as it uses non standard (AOSP) way of waking up the display.
I tried to use various other Xposed modules but none removed the plug in wake.
It works like this:
Screen wake on plug in - changes android.os.PowerManager#newWakeLock(ACQUIRE_CAUSES_WAKEUP | SCREEN_BRIGHT_WAKE_LOCK, "charger plug") to PARTIAL_WAKE_LOCK only (based on fix by @tdunham http://forum.xda-developers.com/showthread.php?t=2799050). Again, this is S5 only fix.
Screen wake on unplug - sets config_unplugTurnsOnScreen to false (this is well known and used solution)
Beep on plug in - disables com.android.systemui.power.PowerUI#playSound(1)
No Wake On Charge is also available from Xposed Module Repository.
Click to expand...
Click to collapse
Does it actually work? I just installed and still wakes up. I use wireless charging though not USB one.
@moneytoo: Many many thanks! I want report that it works very well with my S4active - google-edition (no touchwitz). Was not possible with any other module before
@moneytoo I can confirm that this mod also works on the T-Mobile variant of the LG G3
Thanks!!
artisticcheese said:
Does it actually work? I just installed and still wakes up. I use wireless charging though not USB one.
Click to expand...
Click to collapse
It's working with my Verizon Developer Edition S5 with wireless charging.
Works great on Sprint GS4 (SPH-L720T). Thanks! :good:
isnt this already a feature built in to android or gravity box ? Im not sure if it is or not..
VZW Note3
werks. Thank you kind sir.
SystemErrorOne said:
isnt this already a feature built in to android or gravity box ? Im not sure if it is or not..
Click to expand...
Click to collapse
Yeah, such option is in Cyanogenmod and most probably other ROMs as well. GravityBox and other modules also offer this but nothing was working fully with TouchWiz.
I'll test on my xperia :good:
Thought I would give it a shot ? on TW custom stock Super S4 rom on galaxy S4 SPH-L720, didn't work. Don't have GravityBox.
@moneytoo:
For my device it seems to be enough to set the unplugTurnsOnScreen. The handleLoadPackage part even throws a cant find class exception. Can you please provide an option to set boolean only?
Works great on my T-Mo S4 running Insane Kit Kat
Sent from my Insane S4.
I didn't expect this to work on the HTC One (M8), as it seems to be a Samsung tweak. However I found a non-Xposed app SnooZy Charger that does the job fairly well. So, if the plugin doesn't work for you, this is a viable alternative.
How do I know that the module is working?
Sent from my C5303 using XDA Free mobile app
defim said:
@moneytoo:
For my device it seems to be enough to set the unplugTurnsOnScreen. The handleLoadPackage part even throws a cant find class exception. Can you please provide an option to set boolean only?
Click to expand...
Click to collapse
There are already multiple modules dealing with this config option alone (at least GravityBox, Wanam Xposed, ScreenTweaks, Xposed Additions, Wireless Charging Xposed...) so I don't think it's worth providing anything more. This module is intended solely for S5 (maybe for few more TouchWiz devices).
Thx, GravityBox has no such option (i thought first, i translated not correctly), Xposed Additions & Wanam Xposed a lot to much options, Wireless Charging does not work (im charging with usb), ScreenTweaks is for Sony Xperia
So it would be nice if you could do it, but i'm also able to do it my self if it's okay for you
defim said:
Thx, GravityBox has no such option (i thought first, i translated not correctly), Xposed Additions & Wanam Xposed a lot to much options, Wireless Charging does not work (im charging with usb), ScreenTweaks is for Sony Xperia
So it would be nice if you could do it, but i'm also able to do it my self if it's okay for you
Click to expand...
Click to collapse
I'm not into adding any additional functionality as it works perfectly as I need and once you start adding options to disable plug/unplug wakes only, you will also enable/disable sounds. Then someone will want to change the sounds. Then someone will want to blink LED instead... Feel free to do anything you want to.
Doesn't disable beep on plugin on T-Mobile G3

[MOD][XPOSED][4.1+] Sequence Unlock V1.6 [18/2/2015]

Introduction:
Sequence unlock is an Xposed module which allows you to unlock your phone with a sequence of volume keys (Example: U U D ).
With this module you can unlock your phone in a simple and nifty way and avoid using the default android lockscreen altogether.
You will need to set up a sequence of your choice in the module settings. The default sequence is: U U U
Features include:
Unlock device even when the screen is off.
Disable default wake buttons (Power button, home button etc.)
Bypass the android screenlock
Compatibilty:
This app is compatible with 4.1+ AOSPish devices only (excluding lollipop).
Tested devices:
Sony Xperia 4.2
Samsung Galaxy S3 4.4 (CM11)
BUGS:
Sequence Unlock is currently not compatible with the Physical button music control module.
Download:
Note: I had to change the package name to differentiate the module from it's PRO version. Sorry for the inconvenience.
http://repo.xposed.info/module/com.mb14.sequenceunlock.lite
PRO version:
You can buy the PRO version available on Google Playstore to support development (Being a college kid, I don't earn much).
It comes with extra features like:
Set sequence timeout interval
Vibrate on failed unlock attempt
Changelog
Code:
Changelog:
1.6
Fixed deep sleep bug
1.5
Added support for OPO CM11S.
Fixed magnetic lid wake bug.
Miscellaneous bug fixes
1.4
Fixed the lock screen bypass bug
1.3
Initial release
WOW! nice one! But do I need to wake up the screen in order to unlock or i just press sequence of the volume button?
a4apple said:
WOW! nice one! But do I need to wake up the screen in order to unlock or i just press sequence of the volume button?
Click to expand...
Click to collapse
You don't need to wake up the device to unlock. You can enter the sequence even when the screen is off
You will be my saviour!!!
my so called college sometime checks whether the device is in switch off mode or not...
this module will help me to set a pattern to wake !!!!
YAY!!! Hell Yeah
What happens when you're playing a song? Can you still unlock?
Sent from my SM-G900F using XDA Premium 4 mobile app
aHecticLife said:
What happens when you're playing a song? Can you still unlock?
Sent from my SM-G900F using XDA Premium 4 mobile app
Click to expand...
Click to collapse
You can unlock the phone even if music is playing in the background. But the keys pressed will affect the volume of your music app.
So it isn't compatible with Lollipop yet? Is it?
Ciao600 said:
So it isn't compatible with Lollipop yet? Is it?
Click to expand...
Click to collapse
It won't work on lollipop as of now but I'll release an update as soon as possible.
not working on Xperia Z stock 4.4.4
Bn 292. Only turns screen on, no unlock. Also not compatible with "physical button music control" module (sequence module only works with that module disabled)
mb-14 said:
You can unlock the phone even if music is playing in the background. But the keys pressed will affect the volume of your music app.
Click to expand...
Click to collapse
Sebi673 said:
Bn 292. Only turns screen on, no unlock. Also not compatible with "physical button music control" module (sequence module only works with that module disabled)
Click to expand...
Click to collapse
Almost every phone has the physical button music control, poweramp integrated that aww man.
Did you try it? He's talking about the xposed module "physical button music control". So chances are it works with music players that use these controls.
Sent from my Boeffla powered Slim GT-I9300
Sebi673 said:
Bn 292. Only turns screen on, no unlock. Also not compatible with "physical button music control" module (sequence module only works with that module disabled)
Click to expand...
Click to collapse
I've fixed the lockscreen unlocking bug in version 1.4. As for the incompatibility with the Physical button music control module, I'll try fixing the bug and release an update as soon as possible.
Working like a charm with MT6572 phone :good:. Every function is working great (including unlock from deep sleep)! This is some cheap non-branded china phone with Android 4.2 just for you to know.
Edit: It is also working with Galaxy Gio (s5660) on CM11 (Android 4.4.4). (Including unlock from deep sleep).
mb-14 said:
I've fixed the lockscreen unlocking bug in version 1.4. As for the incompatibility with the Physical button music control module, I'll try fixing the bug and release an update as soon as possible.
Click to expand...
Click to collapse
Awesome I'll test it and report any found bugs. Physical button music ctrl Module doesnt have mapping over single volume button click, yet it somehow breaks functionality as it follows - when phone is in dock - volume buttons act as Wake trigger (only when docked - native behaviour) but with that module nothing happens on vol but. press. And while Phys. but. M Ctrl was activated, Sequence Unlock wasn't functional. If you need any logs or feedback let me know.
---------- Post added at 11:09 AM ---------- Previous post was at 11:04 AM ----------
aHecticLife said:
Almost every phone has the physical button music control, poweramp integrated that aww man.
Click to expand...
Click to collapse
I was talking about the module named "physical button music control". Still i'm gonna wait for the update. Really interested in the sequence unlock
mb-14 said:
It won't work on lollipop as of now but I'll release an update as soon as possible.
Click to expand...
Click to collapse
thanks man am waiting u :good:
Update on 1.4.
With bypass option, module now unlocks the screen - Xperia Z stock rom A 4.4.4 bn 292 Odexed.
Yet it only unlocks if the screen is ON - courtesy of PBMC module. I also tried playing with the settings and mappings of PBMC but no success. The issue lies in the Capture Mode - If Screen off + Lockscreen selected, - then Sequence module will not work at all. If Screen Off only, then Sequence U. will work with screen ON + lockscreen. So issue is in PBMC and its button capture mode (even if no custom option is set for volume up/down click)
would be great if you will add features such as, long press for flashlight or camera, sequence for open specific apps...
other than that, great module, keep it coming..
working great on note 2..rom dn4 :good::good:
edit : its only working right after i lock the phone...not working after phone deep sleep..
I like the idea. Will be waiting for Lollipop support.

Lets mod the new 5.1 update

There are a lot of things I want/need to do with the new update. No one is really talking about it, I know a lot of people probably haven't even updated yet. But I figured it would be nice to have a thread where these things can be addressed and updated as we get them done.
Xposed - The big one. Currently gets stuck in bootloop with the Unofficial version of Xposed for 5.1. Bootloop is easily fixed by running xposed-uninstaller in TWRP.
Change Phone DPI - currently working - *Requires Root* Change it how you usually do. Edit build.prop, or use an app like RomToolBox. I find that 264 works well and looks good. @xordos has a comprehensive guide here.
Apps don't auto-start after reboot - Partially fixed - *Requires Root*use a program like TitaniumBackup to install the apps you want to start at boot as a "system app". This will allow them to start after a reboot, but you will need to reconfigure them after you convert them. Do this for apps like Viper, over-clocking apps, and Tasker. Credit to @Iguanadon
3rd Party Launchers not sticking after reboot - Fixed - *Requires Root* All you have to do is freeze the stock launcher. Use a program like TitaniumBackup, find "Huawei Home" and freeze it. Make sure you have Nova or another Launcher installed first!
Battery Percentage in status bar - Until xposed is working there is a neat little app that allows you to have an overlay on your battery icon like this. It's not perfect, but it gets the job done. The app can be found here. Might want to leave accessibility access off, because it pops up a window everytime you plug or unplug the charger. Doesn't seem to start at boot. Could be annoying to launch the app every time you reboot...depends how often you do it.
Lockscreen - Stock one is horrible compared to stock lollipop. It is kind of pretty, but it takes multiple swipes to unlock sometimes, it doesn't show any notifications, its basically wasted space. I would like the stock Lollipop lockscreen. Anyone have any ideas besides the not so great one in the Playstore? I would rather have an official system lockscreen. On jellybean you just had to freeze the Huawei lockscreen. Now if you freeze Huawei Keyguard, the there is no lockscreen at all. Just the screen turns on and you're on your launcher home-screen. I tried finding the lockscreen app on a cm12 device, but it looks like it's built into the systemUI. I am currently using CM Locker. It's pretty nice, has notifications, and doesn't seem to have a delay like most 3rd party lockscreens.
Multitask screen - Again, I would like the stock Lollipop one, also built into the SystemUI. Once we have xposed, there is a pretty nice app here. Then you can assign the multitask button on your nav bar to open that instead. Worked well for me on jellybean.
The carrier text in the status bar - Fixed - Disabled in settings>display>display carrier name (thanks @xordos)
Boost speaker volume and possibly fix audio cut out bug - somewhat fixed - *Requires root* It's really quiet for some reason, considerably quieter than it was on Jellybean....I have had success with Viper4. Make sure you have BusyBox installed, and run it it at least once to install the framework. Then launch Viper4 and do all the stuff it tells you....Install driver, disable LPA, etc. Enable speaker master switch, enable "eXtra-loud" setting at the bottom, and change "Effect Strength" to Extreme. I noticed about a 20-30% volume increase from this. Might need to be launched again after a reboot, or install as system app. As a bonus, this app/driver also seems to fix the terrible audio bug where audio cuts out, and the phone starts lagging. Only 99% sure, but it hasn't happened to me while its active.
Change boot animation - Pretty standard guide I made here. This post includes the stock Lollipop animation.
If anyone has another thing or two they want fixed, I can add it here. If I find any answers I will update as well.
Carrier text, this can be disabled in settings - Display.
xordos said:
Carrier text, this can be disabled in settings - Display.
Click to expand...
Click to collapse
Nice, I was hoping something's would be easy.
Only launcher I have found with transparent navbar is Holo Launcher HD
Code:
[URL="https://play.google.com/store/apps/details?id=com.mobint.hololauncher.hd"]https://play.google.com/store/apps/details?id=com.mobint.hololauncher.hd[/URL]
The app "Browser" doesn't work at screen dpi 264 & 268. I've tried other higher values, however the soft menus at the bottom of the screen are not properly centered.
Is there a way to change app dpi without using xposed?
medwatt said:
The app "Browser" doesn't work at screen dpi 264 & 268. I've tried other higher values, however the soft menus at the bottom of the screen are not properly centered.
Is there a way to change app dpi without using xposed?
Click to expand...
Click to collapse
Nope. You can either keep upping the whole phone DPI little by little, or maybe use a different browser. I haven't noticed any discrepancies yet in my apps with 264.
ArkAngel06 said:
Nope. You can either keep upping the whole phone DPI little by little, or maybe use a different browser. I haven't noticed any discrepancies yet in my apps with 264.
Click to expand...
Click to collapse
Is the "browser" app launching in your phone?
medwatt said:
Is the "browser" app launching in your phone?
Click to expand...
Click to collapse
I'm at 240 dpi and it doesn't open for me.
Sent from my MT2L03 using Tapatalk
tdamocles said:
I'm at 240 dpi and it doesn't open for me.
Sent from my MT2L03 using Tapatalk
Click to expand...
Click to collapse
It opens at dpi 270+ but the soft buttons at the buttom of the screen are not centered!
medwatt said:
Is the "browser" app launching in your phone?
Click to expand...
Click to collapse
No, I just checked, it just crashes. I always freeze that app though.
Added a way to put the percentage in your battery icon in the status bar in the original post.
me 2, i never open the 'browser' till see above post, so I just tried it crash at my 240 dpi. Personally, I am using boat browser.
---------- Post added at 08:08 PM ---------- Previous post was at 08:02 PM ----------
ArkAngel06 said:
Added a way to put the percentage in your battery icon in the status bar in the original post.
Click to expand...
Click to collapse
Just in case you missed, the builtin percentage (settings - battery - show %) is there. But it is not inside the icon though.
xordos said:
Just in case you missed, the builtin percentage (settings - battery - show %) is there. But it is not inside the icon though.
Click to expand...
Click to collapse
Yeah, thanks. A little too big and bulky for me.
Volume Increase
Any way to increase the volume steps so that the audio is louder? I have the volume all the way up and sometimes I can't really hear what I'm listening to unless I hold the speaker to my ear or wear headphones. I was using an xposed module to do this, but until xposed becomes available is there anything that works to increase the volume so its louder? The xposed mod I was using is called Volumesteps+ and can be found at http://repo.xposed.info/module/com.p1ngu1n.volumesteps . any help would be appreciated.
robertbarber said:
Any way to increase the volume steps so that the audio is louder? I have the volume all the way up and sometimes I can't really hear what I'm listening to unless I hold the speaker to my ear or wear headphones. I was using an xposed module to do this, but until xposed becomes available is there anything that works to increase the volume so its louder? The xposed mod I was using is called Volumesteps+ and can be found at http://repo.xposed.info/module/com.p1ngu1n.volumesteps . any help would be appreciated.
Click to expand...
Click to collapse
I'm not sure how to install it on our new update, but I was using Viper4Android before the update. It is capable of making the volume even louder/quieter.
ScoobSTi said:
I'm not sure how to install it on our new update, but I was using Viper4Android before the update. It is capable of making the volume even louder/quieter.
Click to expand...
Click to collapse
I tried it when I had 4.3 and couldn't really tell any difference. I tried it again this morning with not much luck either. It just doesn't seem louder than what normal volume would be. I know its not going to be extremely loud. I just want something that I don't have to hold the phone to my ear to hear what they're saying. Also with viper it hasn't been setup for 5.1 yet only 5.0.
robertbarber said:
Any way to increase the volume steps so that the audio is louder? I have the volume all the way up and sometimes I can't really hear what I'm listening to unless I hold the speaker to my ear or wear headphones. I was using an xposed module to do this, but until xposed becomes available is there anything that works to increase the volume so its louder? The xposed mod I was using is called Volumesteps+ and can be found at http://repo.xposed.info/module/com.p1ngu1n.volumesteps . any help would be appreciated.
Click to expand...
Click to collapse
robertbarber said:
I tried it when I had 4.3 and couldn't really tell any difference. I tried it again this morning with not much luck either. It just doesn't seem louder than what normal volume would be. I know its not going to be extremely loud. I just want something that I don't have to hold the phone to my ear to hear what they're saying. Also with viper it hasn't been setup for 5.1 yet only 5.0.
Click to expand...
Click to collapse
On my nexus 5(which also had a horrible speaker), you could edit the mixer_paths.xml to boost the volume. I tried it on my Mate2, and couldn't really notice a difference.
After installing busybox, the viper4 driver, and disabling the LPA setting it recommends to, I can say Viper makes a noticeable difference for me. Probably about 25-30% louder.
Make sure you Enable the master switch at the top for speaker, and the "eXtra loud" setting at the bottom, and put Effect strength on Extreme.
Edit: Added my method to original post, with links.
Added boot animation guide.
ArcAngel, I have been trying mate 7 themes that were posted in the mate 7 xda forums. They are emui themes. They seem to work except that the fonts don't seem to load. In fact, I haven't been able to detect any font in the sdcard.
medwatt said:
ArcAngel, I have been trying mate 7 themes that were posted in the mate 7 xda forums. They are emui themes. They seem to work except that the fonts don't seem to load. In fact, I haven't been able to detect any font in the sdcard.
Click to expand...
Click to collapse
Do you have a link? I only see one Theme over there for 3.0, but it does look pretty nice.
Also updated original post with all the 3rd party launchers I have found with transparent nav/status bars. There's a lot, but none of the ones I would really like to use. Here's looking at you Nova/Apex. :crying:

[Xposed] Vibration Tuner v1.0.0 (31/07/15)

Features
Tune the vibration strength of you phone.
Global vibration: it will affect all vibration.
Special vibration: some system vibration such as virtual key vibration.
Compatibility
Android 4.1+
I test it on my Xperia Z3 Compact using Android 5.1.1 .
Credits
@rovo89 Xposed Framework
@C3C076 SeekBarPreference
Download
See attachment or Xposed store
For those guys whose phone unable to use the module, Send me your xposed log can help me solve the problem better.
(It seems as module isn't activated) or something of that nature. 4.4.4
ztc1997 said:
Features
Tune the vibration strength of you phone.
Global vibration: it will affect all vibration.
Special vibration: some system vibration such as virtual key vibration.
Compatibility
Android 4.1+
I test it on my Xperia Z3 Compact using Android 5.1.1 .
Credits
@rovo89 Xposed Framework
@C3C076 SeekBarPreference
Download
See attachment or Xposed store
Click to expand...
Click to collapse
I searched app like this.
Virtual key vibration works only "on and off".
With 10% vibration is off, and above 10 is on, but with constant strength.
Is it possible to change vibration strange to notification, phone calls, alarm separately? For example low vibration for virtual key, and strong for phone calls.
It will be nice to change level of vibrations for SwiftKey keyboard
Wysłane z mojego Nexus 5 przy użyciu Tapatalka
Maybe you need changes related do vibration in kernel since not everything can be done using Xposed.
ggogolewski said:
I searched app like this.
Virtual key vibration works only "on and off".
With 10% vibration is off, and above 10 is on, but with constant strength.
Is it possible to change vibration strange to notification, phone calls, alarm separately? For example low vibration for virtual key, and strong for phone calls.
It will be nice to change level of vibrations for SwiftKey keyboard
Wysłane z mojego Nexus 5 przy użyciu Tapatalka
Click to expand...
Click to collapse
This module is actually changed the vibration time.In general, vibration time is very short, so the change of time, intensity of feeling is changed the strength.
increase to 300 and add a vibration multipler delay
Hey, so far I am liking the app.
Could you please add a vibration multiplier/delay to your app?
Thanks work great on note 3 n900 cm12.1
Would anyone know if this can be used to achieve the same "feel" as the HTC One M8 on the M9?
On my moto x running stock 5.1, it says that the module isn't set up right, but I have checked it off and rebooted a bunch. This has never happened to me before. Anybody else?
BrownDog99 said:
On my moto x running stock 5.1, it says that the module isn't set up right, but I have checked it off and rebooted a bunch. This has never happened to me before. Anybody else?
Click to expand...
Click to collapse
Check if you installed xposed framework properly and activated this module.
I can not set up a long tap. All I tried.
Global and virtual, interconnected?
Sony ZR 5.0.2
Check if you installed xposed framework properly and activated this module.
I rebooted a few times, nada, not working/
it's this module, all other modules I never had a problem with/
galaxy s3, 4.1.2
The global setting works and everything seems to work except the keyboard intensity. It doesnt change anything on my LG G3 D852. Stock lollipop. If you can get it to increase the keyboard vibration intensity, I dont mind sending you a paypal donation. Its one thing I really hate about the G3; the weak keyboard presses/vibration.
squall458 said:
The global setting works and everything seems to work except the keyboard intensity. It doesnt change anything on my LG G3 D852. Stock lollipop. If you can get it to increase the keyboard vibration intensity, I dont mind sending you a paypal donation. Its one thing I really hate about the G3; the weak keyboard presses/vibration.
Click to expand...
Click to collapse
This module change special vibration via hooking PhoneWindowManager, if your keyboard itself access vibrator instead of using system api, the module will be invalid.
I have many other modules set up and have used xposed since release. I double checked still doesn't work
starcallr said:
Check if you installed xposed framework properly and activated this module.
I rebooted a few times, nada, not working/
it's this module, all other modules I never had a problem with/
galaxy s3, 4.1.2
Click to expand...
Click to collapse
same issue here. reinstalled the framework even and no difference. i would like it to turn off vibrations from persistent apps!
ztc1997 said:
This module change special vibration via hooking PhoneWindowManager, if your keyboard itself access vibrator instead of using system api, the module will be invalid.
Click to expand...
Click to collapse
Im using the LG keyboard. Im not sure if its using vibrator or system api. Thanks though!
I've installed on my z3 (not compact) on 5.1.1 and it seems to change the vibration length but not the intensity. Am I doing something wrong?
Sent from my Xperia Z3
devinalonzo said:
(It seems as module isn't activated) or something of that nature. 4.4.4
Click to expand...
Click to collapse
Have you already run the app?
It doesn't for me too... I can see the same pop up...
with 4.4.4.(CM11)...
Same thing. Says it's not activated. All other xposed modules working. Stock android 4.4.4. Sony xperia z3 compact.

Ground Zero Rom - Validus Oreo

Another rom, I found that we can use:
https://forum.xda-developers.com/gr...7-1-1-ground-zero-roms-validus-tesla-t3590277
In the last Downloads, the one says Get Validus 8.1 here, that can we use.
I haven't found any bugs, so far.
Wow...
It was hidden, hard to find.
Will there be an official version? This is RC.
Only validus is compatible with x722 ?.
Hidden1977 said:
Will there be an official version? This is RC.
Click to expand...
Click to collapse
Follow them at their official thread, but it is good as official by now, in my opinion.
tomgar said:
Only validus is compatible with x722 ?.
Click to expand...
Click to collapse
Yes, only Validus build 02/11 Oreo 8.1 works, for now.
Bugs
beeduq said:
Yes, only Validus build 02/11 Oreo 8.1 works, for now.
Click to expand...
Click to collapse
What are the bugs and does volte works on it ??? Loud speaker during call is it okk ?? Let me know please
Yugps said:
What are the bugs and does volte works on it ??? Loud speaker during call is it okk ?? Let me know please
Click to expand...
Click to collapse
I haven't found any bugs. I used it in two days, everything works great, except one.... When I receive phone call for first time, it was on loudspeaker, but the rest works fine.
Calling or I never used VoLTE (voice over lte) nor need it, cuz' it has good call quality.
Loudspeaker talking on high volume distorts the sound, so it is not recommend to use it on meetings or driving.
When I plugged the audio adapter, it used to start music app, but it can be disabled by Settings, WolvesDen, on the tap called Multi-tasking, Headset, Launch music app on headset connection.
Where to turn off ambient light and wake? This feature does crash launcher 3. On Aicp 13.1 also crash trebuchet. After disabling ambient light for Aicp is good.
Hidden1977 said:
Where to turn off ambient light and wake? This feature does crash launcher 3. On Aicp 13.1 also crash trebuchet. After disabling ambient light for Aicp is good.
Click to expand...
Click to collapse
In Settings, Display, Advanced, Ambient display or Settings, WolvesDen, Lights, Notifications light. I never had that problem when I receive text or app notifications. Was it specific app that crashed launchers or every notifications?
In the morning there is no led, only Aquamail notifications are on the phone. After waking up the fingerprint launcher3 does not respond. I do not want to turn off the screen saver when notifications but only ambient light. Notifications on a black background.
Hidden1977 said:
In the morning there is no led, only Aquamail notifications are on the phone. After waking up the fingerprint launcher3 does not respond. I do not want to turn off the screen saver when notifications but only ambient light. Notifications on a black background.
Click to expand...
Click to collapse
Fingerprint was reported unresponsive at original thread, same as other Oreo roms, if I remember correctly...
It called Ambient light, the notification on black background, so disable it will stop show the new messages or notifications, only led will remain.
In Settings, Apps & notifications you can change settings which apps to show or hide notifications, it might be disabled by default.

Categories

Resources