MyApplication.java 690 Bytes

package com.example.myapplication;

import android.app.Application;
import android.util.Log;

import com.example.myapplication.starttask.StartTaskConfig;
import com.example.myapplication.starttask.StartTaskTool;

/**
 * @author devel
 * @time 2024/8/28 星期三 16:23
 */
public class MyApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        Log.e("zzzz","MyApplication onCreate");
        // test
        StartTaskConfig taskConfig = new StartTaskConfig(this);
        taskConfig.start();
        StartTaskTool.startTaskInMain(this);
        StartTaskTool.startPrivate(this);
        StartTaskTool.startTaskInSplash(this);
    }
}