version:1.0.0

update:增加混淆,优化其他包名
bugfixes:
This commit is contained in:
2024-07-11 17:12:25 +08:00
parent 986bebfea4
commit ef836554ad
17 changed files with 488 additions and 40 deletions

View File

@@ -106,9 +106,9 @@ public class RemoteManager {
if (mIGetInfoInterface == null) {
//这是连接aidl服务的代码
Intent intent = new Intent();
intent.setAction("com.uiuios.sn.IGetInfoInterface");
intent.setPackage("com.uiuios.sn");
intent.setComponent(new ComponentName("com.uiuios.sn", "com.uiuios.sn.service.RemoteService"));
intent.setAction("com.xxpatx.sn.IGetInfoInterface");
intent.setPackage("com.xxpatx.sn");
intent.setComponent(new ComponentName("com.xxpatx.sn", "com.xxpatx.sn.service.RemoteService"));
mContext.bindService(intent, mIGetInfoConnection, Context.BIND_AUTO_CREATE);
}
}