1.4.0103 更换图标,G10P 标签MTK11改为G104,G10P标签为G10P

This commit is contained in:
2024-01-04 11:39:25 +08:00
parent 1bf394241c
commit 913270821c
36 changed files with 503 additions and 90 deletions

View File

@@ -16,7 +16,9 @@ public class AoleyunActivityController extends IActivityController.Stub {
public boolean activityStarting(Intent intent, String pkg) {
Log.e(TAG, "activityStarting: " + pkg + ", intent= " + intent);
//retrun false;//false 则不会启动,直接返回。
return JGYUtils.getInstance().isForbid(pkg);
boolean status = JGYUtils.getInstance().isForbid(pkg);
Log.e(TAG, "activityStarting: " + pkg + "start = " + status);
return status;
}
@Override