# autohelper **Repository Path**: xuqingcode/autohelper ## Basic Information - **Project Name**: autohelper - **Description**: Android自动辅助功能快速脚本框架 - **Primary Language**: Java - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 1 - **Created**: 2022-03-11 - **Last Updated**: 2024-05-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # AutoHelper #### 介绍 Android自动辅助的基础框架 #### 功能 - 封装了自动辅助类 - 统一实现了辅助以及悬浮窗等基础权限的处理 - 封装了基础的辅助查找以及执行类 - 封装了自动辅助脚本的快速生成类以及基础模板 - 脚本由统一的入口类协调调用 - 脚本编写由统一的模板规范 - 提供了界面note信息获取的工具app - 能单个或批量执行脚本 #### 安装教程 1. 在项目的gredle文件中添加: ```groovy allprojects { repositories { ... maven { url 'https://jitpack.io' } } } ``` 2. 在app的gredle文件中添加: ```groovy dependencies { //框架,必须引入 implementation 'com.gitee.xuqingcode.autohelper:autoholper:1.1.0' //脚本执行引擎,有需要执行脚本的需求时需要引入,如只需要生成脚本可不引入 implementation 'com.gitee.xuqingcode.autohelper:autohelper-engine:1.1.0' //自动化测试,有需要实现自动化测试测试你的app时需要引入 implementation 'com.gitee.xuqingcode.autohelper:autohelper-testing:1.1.0' //一些常用操作的脚本封装,该模块可以不引入,用户可参考该模块,自行定制脚本 implementation 'com.gitee.xuqingcode.autohelper:autohelper-script:1.1.0' } ``` #### 使用说明 详情可参考项目中的例子! #### 最后 感谢各位读者,对项目感兴趣,如遇问题,可对项目进行指正!