123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- ext.kotlin_version = "1.5.10"
- /**
- * Aop编制版本
- */
- ext.aspectj_version = '1.8.9'
- /**
- * 路由注解处理器版本
- */
- ext.router_version = '1.0.2'
- /**
- * SDK最小支持版本
- */
- ext.min_sdk_version = 23
- /**
- * SDK目标支持版本
- */
- ext.target_sdk_version = 30
- /**
- * SDK编译版本
- */
- ext.build_tools_version = "30.0.2"
- /**
- * 支持库版本
- */
- ext.support_library_version = "28.0.0"
- /**
- * APP版本码
- */
- ext.app_version_code = 145
- /**
- * APP版本号
- */
- ext.app_version = "1.3.63"
- /**
- * 项目依赖库
- */
- dependencies {
- classpath "com.android.tools.build:gradle:4.2.2"
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- /**
- * Aop埋点相关
- */
- classpath "org.aspectj:aspectjtools:$aspectj_version"
- }
- repositories {
- maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' }
- maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'}
- maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
- maven { url 'https://jitpack.io' }
- }
- }
- allprojects {
- repositories {
- maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' }
- maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'}
- maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
- maven { url 'https://jitpack.io' }
- //maven { url 'https://dl.bintray.com/geamtear/maven' }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|