82 lines
3.1 KiB
Groovy
82 lines
3.1 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'com.alibaba.arouter'
|
|
|
|
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")
|
|
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments = [AROUTER_MODULE_NAME: project.getName()]
|
|
}
|
|
}
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles 'consumer-rules.pro'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
zipAlignEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation rootProject.ext.dependencies.kotlinstdlibjdk7
|
|
implementation rootProject.ext.dependencies.androidxappcompat
|
|
implementation rootProject.ext.dependencies.androidxccorektx
|
|
implementation rootProject.ext.dependencies.aiassist
|
|
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
|
|
implementation rootProject.ext.dependencies.okhttpinterceptor
|
|
implementation 'com.zhidaoauto.controller:api:1.0.8'
|
|
implementation 'com.zhidao.cosupload:cosuploadsdk:1.1.6', {
|
|
exclude group: 'com.zhidao.utils', module: 'utils'
|
|
}
|
|
implementation 'com.zhidao.video:video-processor:1.0.2.1'
|
|
implementation rootProject.ext.dependencies.eventbus
|
|
implementation rootProject.ext.dependencies.coroutinescore
|
|
implementation rootProject.ext.dependencies.coroutinesandroid
|
|
implementation rootProject.ext.dependencies.retrofit
|
|
implementation rootProject.ext.dependencies.retrofitconvertergson
|
|
implementation rootProject.ext.dependencies.gson
|
|
implementation rootProject.ext.dependencies.rxjava
|
|
implementation rootProject.ext.dependencies.rxandroid
|
|
implementation rootProject.ext.dependencies.analytics
|
|
|
|
implementation rootProject.ext.dependencies.arouter
|
|
kapt rootProject.ext.dependencies.aroutercompiler
|
|
|
|
if (Boolean.valueOf(RELEASE)) {
|
|
implementation rootProject.ext.dependencies.mogocommons
|
|
implementation rootProject.ext.dependencies.mogomap
|
|
implementation rootProject.ext.dependencies.mogoserviceapi
|
|
} else {
|
|
implementation project(':modules:mogo-module-common')
|
|
implementation project(':libraries:mogo-map')
|
|
implementation project(':services:mogo-service-api')
|
|
}
|
|
}
|
|
|
|
apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString()
|