43 lines
1.5 KiB
Groovy
43 lines
1.5 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.android.compileSdkVersion
|
|
buildToolsVersion rootProject.ext.android.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.android.minSdkVersion
|
|
targetSdkVersion rootProject.ext.android.targetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles 'consumer-rules.pro'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation project(":libraries:mogo-map")
|
|
implementation project(":libraries:mogo-map-api")
|
|
implementation project(":foudations:mogo-utils")
|
|
api project(":foudations:mogo-commons")
|
|
api project(':services:mogo-service-api')
|
|
implementation project(':modules:mogo-module-common')
|
|
implementation project(':modules:mogo-module-map')
|
|
implementation rootProject.ext.dependencies.androidxappcompat
|
|
implementation rootProject.ext.dependencies.androidxconstraintlayout
|
|
implementation rootProject.ext.dependencies.arouter
|
|
implementation rootProject.ext.dependencies.room
|
|
implementation rootProject.ext.dependencies.roomAnnotationProcessor
|
|
implementation rootProject.ext.dependencies.roomRxjava
|
|
annotationProcessor rootProject.ext.dependencies.aroutercompiler
|
|
}
|