[Guide How-to] Compeletely Disable Noise Reduction 4.3 TW

tdunham

Recognized Contributor
Jun 21, 2008
13,686
36,462
0
TampaBay
Guide - Compeletely Disable Noise Reduction in 4.3 TW

Note:
This completely disables the feature from the phone. The first edit is just to remove the Noise Reduction toggle from call settings.

SecPhone\smali\com\android\phone\PhoneFeature.smali:

Find method .method static hasNoiseSuppressionFeature(Landroid/content/Context;)Z


Near bottom of method make this change:

Before:
Code:
    const/4 v0, 0x0

    :goto_0
    return v0

    :cond_0
    const/4 v0, 0x1

    goto :goto_0
.end method
After:
Code:
    const/4 v0, 0x0

    :goto_0
    return v0

    :cond_0
    [COLOR="Red"]const/4 v0, 0x0
[/COLOR]
    goto :goto_0
.end method
 
Last edited: