0
0
mirror of https://github.com/florisboard/florisboard.git synced 2024-09-20 12:02:19 +02:00
florisboard/app/build.gradle.kts

103 lines
3.8 KiB
Plaintext
Raw Normal View History

2021-03-15 12:12:30 +01:00
2021-02-10 21:38:32 +01:00
plugins {
2021-04-17 14:09:57 +02:00
id("com.android.application") version "4.1.3"
2021-02-10 21:38:32 +01:00
kotlin("android") version "1.4.30"
2021-03-15 12:12:30 +01:00
kotlin("kapt") version "1.4.30"
2021-02-10 21:38:32 +01:00
}
android {
compileSdkVersion(30)
buildToolsVersion("30.0.3")
2021-02-10 21:38:32 +01:00
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
2021-04-17 14:09:57 +02:00
freeCompilerArgs = listOf("-Xallow-result-return-type", "-Xopt-in=kotlin.RequiresOptIn")
2021-02-10 21:38:32 +01:00
}
defaultConfig {
applicationId = "dev.patrickgold.florisboard"
minSdkVersion(23)
targetSdkVersion(30)
2021-04-13 15:48:40 +02:00
versionCode(36)
versionName("0.3.11")
2021-02-10 21:38:32 +01:00
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
viewBinding = true
}
buildTypes {
named("debug").configure {
applicationIdSuffix = ".debug"
2021-03-16 03:17:34 +01:00
versionNameSuffix = "-debug"
resValue("mipmap", "floris_app_icon", "@mipmap/ic_app_icon_debug")
resValue("mipmap", "floris_app_icon_round", "@mipmap/ic_app_icon_debug_round")
2021-02-10 21:38:32 +01:00
resValue("string", "floris_app_name", "FlorisBoard Debug")
}
2021-03-16 03:17:34 +01:00
create("beta") // Needed because by default the "beta" BuildType does not exist
named("beta").configure {
applicationIdSuffix = ".beta"
2021-04-13 15:48:40 +02:00
versionNameSuffix = "-beta01"
2021-03-16 03:17:34 +01:00
proguardFiles.add(getDefaultProguardFile("proguard-android-optimize.txt"))
resValue("mipmap", "floris_app_icon", "@mipmap/ic_app_icon_beta")
resValue("mipmap", "floris_app_icon_round", "@mipmap/ic_app_icon_beta_round")
resValue("string", "floris_app_name", "FlorisBoard Beta")
}
2021-02-10 21:38:32 +01:00
named("release").configure {
proguardFiles.add(getDefaultProguardFile("proguard-android-optimize.txt"))
2021-03-16 03:17:34 +01:00
resValue("mipmap", "floris_app_icon", "@mipmap/ic_app_icon_release")
resValue("mipmap", "floris_app_icon_round", "@mipmap/ic_app_icon_release_round")
2021-02-10 21:38:32 +01:00
resValue("string", "floris_app_name", "@string/app_name")
}
}
testOptions {
unitTests {
isIncludeAndroidResources = true
}
}
lintOptions {
isAbortOnError = false
}
}
2021-03-15 12:12:30 +01:00
2021-02-10 21:38:32 +01:00
dependencies {
implementation("androidx.activity", "activity-ktx", "1.2.1")
2021-02-10 21:38:32 +01:00
implementation("androidx.appcompat", "appcompat", "1.2.0")
implementation("androidx.core", "core-ktx", "1.3.2")
implementation("androidx.fragment", "fragment-ktx", "1.3.0")
2021-02-10 21:38:32 +01:00
implementation("androidx.preference", "preference-ktx", "1.1.1")
implementation("androidx.constraintlayout", "constraintlayout", "2.0.4")
2021-03-05 20:13:35 +01:00
implementation("androidx.lifecycle", "lifecycle-service", "2.2.0")
2021-02-10 21:38:32 +01:00
implementation("com.google.android", "flexbox", "2.0.1") // requires jcenter as of version 2.0.1
implementation("com.squareup.moshi", "moshi-kotlin", "1.11.0")
implementation("com.squareup.moshi", "moshi-adapters", "1.11.0")
implementation("com.google.android.material", "material", "1.3.0")
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-android", "1.4.2")
implementation("com.jaredrummler", "colorpicker", "1.1.0")
implementation("com.jakewharton.timber", "timber", "4.7.1")
implementation("com.nambimobile.widgets", "expandable-fab", "1.0.2")
2021-03-15 12:12:30 +01:00
implementation("androidx.room", "room-runtime", "2.2.6")
kapt("androidx.room", "room-compiler","2.2.6")
2021-02-10 21:38:32 +01:00
testImplementation("junit", "junit", "4.13.1")
testImplementation("org.mockito", "mockito-inline", "3.7.7")
testImplementation("org.robolectric", "robolectric", "4.5.1")
androidTestImplementation("androidx.test.ext", "junit", "1.1.2")
androidTestImplementation("androidx.test.espresso", "espresso-core", "3.3.0")
}