九彩固件升级提示揭秘
九彩固件升级提示怎么破?网上都在问,博主刚好也是这个固件,且按照提示重新升级了三次后(被耍猴了三次,后面揭秘)。最终受不了准备一探究竟。先网上查找下相关资源,结果很失望都没有结果。
上图给了我启发,于是便解开刷机包。反编译这个应用,看看是什么逻辑。
好家伙,还真被我找到了。
```
public void onReceive(Context context, Intent intent) {
if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction()) || "android.intent.action.MEDIA_MOUNTED".equals(intent.getAction()) || "android.intent.action.MEDIA_UNMOUNTED".equals(intent.getAction()) || "android.intent.action.MEDIA_EJECT".equals(intent.getAction()) || "android.intent.action.MEDIA_REMOVED".equals(intent.getAction()) || "android.intent.action.LOCKED_BOOT_COMPLETED".equals(intent.getAction()) || "android.intent.action.BOOT_PROGRESS".equals(intent.getAction()) || "android.intent.action.REBOOT".equals(intent.getAction())) {
SharedPreferences sharedPreferences = context.getSharedPreferences("boot_count", 0);
int i = sharedPreferences.getInt("count", 0) + 1;
SharedPreferences.Editor edit = sharedPreferences.edit();
edit.putInt("counta", i);
edit.apply();
if (i < 400) {
return;
}
Intent intent2 = new Intent(context, MainActivity.class);
intent2.addFlags(268435456);
context.startActivity(intent2);
}
}
```
丫的,这不是把用户当猴子耍吗。难怪当差不多一两个月就提示升级,而且我还傻傻的真去升级了。虽然你固件很出色,但是你也不要这样去折磨用户吧。
目前我的解决办法是,禁用一个服务 大概是这个【systemmanager ,把他冻结了】。然后偶尔出现提示时,直接按遥控器主页按钮,就进系统了。 int i = sharedPreferences.getInt("count", 0) + 1;
SharedPreferences.Editor edit = sharedPreferences.edit();
edit.putInt("counta", i);
edit.apply();
为啥我感觉会一直执行 获取值的key和设置值的key不一样啊i不是一直是1? 这个发的比你晚,看样子应该是从论坛里复制粘贴的,你看看是不是你发的
九彩固件升级提示揭秘-智能电视、网络机顶盒 刷机 破解 root 评测-恩山无线论坛
https://www.right.com.cn/forum/thread-8341095-1-1.html 这个厉害,,,碰到狠人了 有点意思,超过400就提示升级? zhichengishero 发表于 2024-1-23 11:44
有点意思,超过400就提示升级?
哎可不是吗,关键是我还真去重新刷机升级。结果今天早上又提示升级。 弱弱的问一句,知道怎么回事了,怎么去破这个。 感谢楼主{:1_893:}我很赞同!用心讨论,共获提升! 侃遍天下无二人 发表于 2024-1-23 11:59
这个发的比你晚,看样子应该是从论坛里复制粘贴的,你看看是不是你发的
九彩固件升级提示揭秘-智能电视、 ...
这个是我哦 当事件发生次数达到 400 次时,启动 MainActivity 这有点意思