Question Smarters 3.1.5 change default settings before recompile

  • When asking for help or guidance - please ensure to check the `Question` box before completing your New Thread.
    This enables yourself and other users to vote for the best answer given and will help people find the best answer quicker in future!
    - Brain
Advertise with us


Welcome!
Join this incredible group of like-minded people and start discussing everything IPTV.
Register now

HellMaster

Member
Sep 18, 2022
9
16
Austria
Hello guys,

Can everyone tell me, which I can change the default settings?

For example "always on boot on" to set false ?

Thank you
 

Ian

🤷
Mar 28, 2022
271
3
2,792
Liverpool, UK
t.me
GeneralSettingsActivity->onViewClicked
Java:
            if (this.autoStart.isChecked()) {
                SharedPreferences.Editor editor = this.t;
                if (editor != null) {
                    editor.putBoolean("auto_start", true);
                }
            } else {
                SharedPreferences.Editor editor2 = this.t;
                if (editor2 != null) {
                    editor2.putBoolean("auto_start", false);
                }
            }
You wanna set them both to false?

Try changing:
Smali:
    const-string v1, "auto_start"

    const/4 v2, 0x1

To:
Smali:
    const-string v1, "auto_start"

    const/4 v2, 0x0

Not tested though so not sure if it works.
 
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock