48 lines
1.3 KiB
Groovy
48 lines
1.3 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply from: 'script/version.gradle'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdkVersion 29
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
|
|
testOptions {
|
|
unitTests {
|
|
includeAndroidResources = true
|
|
}
|
|
}
|
|
namespace 'com.tenclouds.fluidbottomnavigation'
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "androidx.core:core:$androidx_version"
|
|
implementation "androidx.core:core-ktx:$androidx_version"
|
|
implementation "androidx.appcompat:appcompat:$androidx_version"
|
|
implementation "androidx.constraintlayout:constraintlayout:$constraint_version"
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'org.mockito:mockito-core:2.23.4'
|
|
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0"
|
|
testImplementation "org.robolectric:robolectric:4.3"
|
|
}
|