rubmz
rubmz

Reputation: 2029

Is there a way to disable the annoying device performance alert while debugging in android?

Is there a way to disable the annoying device performance alert while debugging in android (Android 5.1.1)? While in breakpoint the phone declares my app as "persona non grata" counting the number of times it "crashed", claiming it's slowing my device... It just might, ONE DAY :)

The problem is that it stops my debugger too. Is it because I am still using eclipse, and not Android Studio?

Didn't find any option in the settings to disable this...

what the OP is seeing...

Upvotes: 1

Views: 451

Answers (1)

Grishka
Grishka

Reputation: 2595

That window comes from the "Smart manager" app pre-installed in recent Samsung ROMs. It can't be easily disabled or deleted without rooting, but these commands did the trick on my Galaxy S6:

adb shell pm hide com.samsung.android.sm
adb shell pm hide com.sec.android.service.sm

Upvotes: 3

Related Questions