# common-android **Repository Path**: atalent/common-android ## Basic Information - **Project Name**: common-android - **Description**: No description available - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-10 - **Last Updated**: 2021-12-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # common-library 此仓库为安卓通用第三方库 需安装lom插件以忽略var语法报红 使用方法:项目level须大于30? 1、@ProjectName\settings.gradle (手动添加) ```ini ... include ':common' project(':common').projectDir = new File(settingsDir, '../../common-android/common') ``` 2、@ProjectName\app\build.gradle (android studio 使用相关方法时,右键分析,可自动完成) ```ini dependencies { ... implementation project(path: ':common') compileOnly 'org.projectlombok:lombok:1.18.12' annotationProcessor 'org.projectlombok:lombok:1.18.12' } ```