94 lines
3.4 KiB
Groovy
94 lines
3.4 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'kotlin-android'
|
|
id 'kotlin-android-extensions'
|
|
id 'kotlin-kapt'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.android.compileSdkVersion
|
|
// buildToolsVersion rootProject.ext.android.buildToolsVersion
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.android.minSdkVersion
|
|
targetSdkVersion rootProject.ext.android.targetSdkVersion
|
|
versionCode Integer.valueOf(VERSION_CODE)
|
|
versionName getValueFromRootProperties("${project.name.replace("-", "_").toUpperCase()}_VERSION")
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles 'consumer-rules.pro'
|
|
//ARouter apt 参数
|
|
kapt {
|
|
useBuildCache = false
|
|
arguments {
|
|
arg("AROUTER_MODULE_NAME", project.getName())
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation rootProject.ext.dependencies.kotlinstdlib
|
|
implementation rootProject.ext.dependencies.androidxccorektx
|
|
implementation rootProject.ext.dependencies.androidxappcompat
|
|
implementation rootProject.ext.dependencies.androidxconstraintlayout
|
|
implementation rootProject.ext.dependencies.androidxrecyclerview
|
|
implementation rootProject.ext.dependencies.flexbox
|
|
|
|
implementation rootProject.ext.dependencies.rxandroid
|
|
implementation rootProject.ext.dependencies.mogoaicloudtrafficlive
|
|
implementation rootProject.ext.dependencies.material
|
|
|
|
//Crash日志收集
|
|
// implementation rootProject.ext.dependencies.crashSdk
|
|
implementation rootProject.ext.dependencies.boostmultidex
|
|
|
|
// debugImplementation rootProject.ext.dependencies.debugleakcanary
|
|
// releaseImplementation rootProject.ext.dependencies.releaseleakcanary
|
|
implementation rootProject.ext.dependencies.arouter
|
|
implementation project(path: ':core:function-impl:mogo-core-function-map')
|
|
implementation project(':core:function-impl:mogo-core-function-devatools')
|
|
kapt rootProject.ext.dependencies.aroutercompiler
|
|
|
|
implementation rootProject.ext.dependencies.android_start_up
|
|
implementation rootProject.ext.dependencies.cicle_indicator
|
|
implementation rootProject.ext.dependencies.koomjava
|
|
implementation rootProject.ext.dependencies.koomnative
|
|
implementation rootProject.ext.dependencies.koomxhook
|
|
implementation rootProject.ext.dependencies.preference
|
|
implementation rootProject.ext.dependencies.preference_ktx
|
|
|
|
implementation rootProject.ext.dependencies.thread_opt
|
|
api project(':test:crashreport-apmbyte')
|
|
compileOnly project(':core:function-impl:mogo-core-function-datacenter')
|
|
implementation project(':foudations:mogo-commons')
|
|
api project(':core:mogo-core-res')
|
|
implementation project(':core:mogo-core-utils')
|
|
compileOnly project(':core:mogo-core-function-call')
|
|
compileOnly project(":libraries:mogo-map")
|
|
}
|
|
|
|
apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString()
|