mirror of
https://github.com/imcarlost/Acronyms.git
synced 2026-04-09 18:38:28 -04:00
62 lines
1.4 KiB
Groovy
62 lines
1.4 KiB
Groovy
apply from: '../versions.gradle'
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-parcelize'
|
|
|
|
android {
|
|
compileSdkVersion build_versions.target_sdk
|
|
buildToolsVersion build_versions.build_tools
|
|
|
|
defaultConfig {
|
|
applicationId "dev.carlos.acronyms"
|
|
minSdkVersion build_versions.min_sdk
|
|
targetSdkVersion build_versions.target_sdk
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
buildConfigField "String", "BASE_ENDPOINT", '"http://www.nactem.ac.uk"'
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix '.debug'
|
|
debuggable true
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
release {
|
|
debuggable false
|
|
minifyEnabled true
|
|
signingConfig signingConfigs.debug
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
|
|
testOptions {
|
|
unitTests.returnDefaultValues = true
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
dataBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
implementation project(':shortform')
|
|
} |