mirror of
https://github.com/imcarlost/Friendlists.git
synced 2026-04-09 18:38:36 -04:00
57 lines
1.5 KiB
Groovy
57 lines
1.5 KiB
Groovy
apply from: '../versions.gradle'
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion build_versions.target_sdk
|
|
buildToolsVersion build_versions.build_tools
|
|
|
|
defaultConfig {
|
|
applicationId "com.hako.friendlists"
|
|
minSdkVersion build_versions.min_sdk
|
|
targetSdkVersion build_versions.target_sdk
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
buildConfigField "String", "DB_NAME", '"friendlists.db"'
|
|
buildConfigField "String", "BASE_ENDPOINT", '"https://jsonplaceholder.typicode.com/"'
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix '.debug'
|
|
debuggable true
|
|
}
|
|
release {
|
|
debuggable false
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
testOptions {
|
|
unitTests.returnDefaultValues = true
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":base")
|
|
implementation project(":userlist")
|
|
implementation project(":albumlist")
|
|
implementation project(":photolist")
|
|
testImplementation project(':testing')
|
|
androidTestImplementation project(':testing')
|
|
}
|