高中生

- 金币
- 724
- 好评
- 3
- 信誉
- 100

|
本帖最后由 vaint 于 2024-6-11 17:47 编辑
一款看小视频的软件(不提供软件,请自行寻找。),去除所有广告加破解VIP教程。
1、去“福利”广告和顶部广告
res/layout/fragment_main.xml
修改android:id="@id/banner"下的高度为0dp并添加android:visibility="gone"
修改android:id="@id/title_fl"下的宽度、高度为0dp并添加android:visibility="gone"
2、去“我的”页面多余功能
res/layout/fragment_mine.xml
例如: </LinearLayout>
<View
android:background="@color/color_f0"
添加 android:visibility="gone"
android:layout_width="match_parent"
改为"0dp" android:layout_height="0dp"
改为"0dp" android:layout_marginLeft="0dp" />
<LinearLayout
android:orientation="horizontal"
android:id="@id/notice_ll"
android:paddingLeft="15dp"
android:paddingRight="15dp"
添加 android:visibility="gone"
改为"0dp" android:layout_width="0dp"
改为"0dp" android:layout_height="0dp">
<TextView
android:textColor="@color/b34"
android:gravity="center_vertical"
添加 android:visibility="gone"
改为"0dp" android:layout_width="0dp"
改为"0dp" android:layout_height="0dp"
android:text="消息通知"
android:drawableLeft="@drawable/icon_notice"
android:drawablePadding="15dp"
android:layout_weight="1.0" />
<ImageView
android:layout_gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/detail_btn_arrow_normal" />
</LinearLayout>
三处为一组
3、隐藏开屏广告
res/layout/activity_splash.xml
修改android:id="@id/splash.img"下的宽度、高度为0dp并添加android:visibility="gone"
用Dex编辑器++修改所有dex文件,搜索代码MyCountDownTimer,选择SplashActivity$5中任意一条进入。
修改.line 346中v6、v8的赋值为0x0,修改.line 349中v5的赋值为0x0。
4、去播放页广告
res/layout/home_detail_head.xml
修改android:id="@id/heard_recyclerview"上面的宽度、高度为0dp
5、去首页弹窗
用Dex编辑器++修改所有dex文件,搜索代码MainActivity$9,找到
new-instance v3, Lcom/xxx/svideo/MainActivity$9;
invoke-direct {v3, p0}, Lcom/xxx/svideo/MainActivity$9;-><init>(Lcom/xxx/svideo/MainActivity;)V
invoke-virtual {v2, v3}, Lcom/xxx/svideo/okhttputils/request/RequestCall;->execute(Lcom/xxx/svideo/okhttputils/callback/Callback;)V
将第一行中的MainActivity$9修改为MainActivity,然后把后面两行删除
6、破解VIP
用Dex编辑器++修改所有dex文件,搜索方法名getis_vip,结果唯一。
.method public getIs_vip()Ljava/lang/String;
.registers 2
.line 59
iget-object v0, p0, Lcom/xxx/svideo/model/UserModel;->is_vip:Ljava/lang/String;
const-string v0, "1" 在此处添加此代码
return-object v0
.end method
补充内容 (2024-6-24 17:03):
此为旧版的破解教程 |
-
查看全部评分
总评分:好评 +3
金币 +4
|