# LaunchStarter **Repository Path**: eachann_lee/LaunchStarter ## Basic Information - **Project Name**: LaunchStarter - **Description**: App 启动优化;适用于App启动时,有很多任务需要初始化时使用。 - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-06 - **Last Updated**: 2021-11-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # App启动优化 ### 添加依赖 ```bash allprojects { repositories { ... maven { url 'https://jitpack.io' } } } dependencies { implementation 'com.gitee.eachann_lee:LaunchStarter:1.0.0' } ``` ### 使用样例,在Application#onCreate()中进行初始化较耗时的任务 ```kotlin TaskDispatcher.init(this) TaskDispatcher.createInstance() .addTask(InitBuglyTask()) .addTask(InitSmartRefreshLayoutTask()) .start() ```