funkwhale-app-android/app/build.gradle.kts

279 lines
8.0 KiB
Plaintext
Raw Permalink Normal View History

2019-10-22 20:19:05 +02:00
import org.jetbrains.kotlin.konan.properties.hasProperty
2019-10-21 23:26:06 +02:00
import java.io.FileInputStream
import java.util.Properties
2019-10-21 23:26:06 +02:00
plugins {
id("com.android.application")
id("kotlin-android")
2023-01-10 13:56:20 +01:00
id("androidx.navigation.safeargs.kotlin")
id("kotlin-parcelize")
id("kotlin-kapt")
2019-10-21 23:26:06 +02:00
id("org.jlleitschuh.gradle.ktlint") version "11.2.0"
2021-06-26 13:36:32 +02:00
id("com.gladed.androidgitversion") version "0.4.14"
id("com.github.triplet.play") version "3.8.1"
2021-08-02 13:24:12 +02:00
id("de.mobilej.unmock")
id("com.github.ben-manes.versions")
2023-01-10 13:56:20 +01:00
id("org.jetbrains.kotlin.android")
2021-07-30 10:57:49 +02:00
jacoco
2019-10-21 23:26:06 +02:00
}
val props = Properties().apply {
try {
load(FileInputStream(rootProject.file("local.properties")))
} catch (e: Exception) {
}
2019-10-21 23:26:06 +02:00
}
2021-08-02 13:24:12 +02:00
unMock {
keep = listOf("android.net.Uri")
2021-07-30 10:57:49 +02:00
}
androidGitVersion {
2021-09-17 08:50:19 +02:00
codeFormat = "MMNNPPBBB" // Keep in sync with version_code() in dist/create_release.sh
format = "%tag%%-count%%-commit%%-branch%"
}
2019-10-21 23:26:06 +02:00
android {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2019-10-21 23:26:06 +02:00
}
namespace = "audio.funkwhale.ffa"
2021-08-06 21:16:46 +02:00
testCoverage {
2022-08-25 14:58:19 +02:00
version = "0.8.7"
2021-08-06 21:16:46 +02:00
}
2019-10-21 23:26:06 +02:00
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
2019-10-21 23:26:06 +02:00
}
2021-07-16 10:03:52 +02:00
buildFeatures {
viewBinding = true
2023-01-10 13:56:20 +01:00
dataBinding = true
2021-07-16 10:03:52 +02:00
}
packagingOptions {
resources.excludes.add("META-INF/LICENSE.md")
resources.excludes.add("META-INF/LICENSE-notice.md")
}
lint {
2021-08-06 21:16:46 +02:00
disable += listOf("MissingTranslation", "ExtraTranslation")
2021-07-20 09:01:52 +02:00
}
compileSdk = 33
2019-10-21 23:26:06 +02:00
defaultConfig {
applicationId = "audio.funkwhale.ffa"
versionCode = androidGitVersion.code()
2019-10-21 23:26:06 +02:00
versionName = androidGitVersion.name()
2021-07-23 14:10:13 +02:00
minSdk = 24
targetSdk = 33
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2021-07-23 14:10:13 +02:00
manifestPlaceholders["appAuthRedirectScheme"] = "urn"
2019-10-21 23:26:06 +02:00
}
signingConfigs {
2021-07-13 10:30:33 +02:00
2019-10-21 23:26:06 +02:00
create("release") {
2021-07-13 10:30:33 +02:00
if (project.hasProperty("signing.store")) {
storeFile = file(project.findProperty("signing.store")!!)
storePassword = project.findProperty("signing.store_passphrase")!!.toString()
keyAlias = "ffa"
keyPassword = project.findProperty("signing.key_passphrase")!!.toString()
}
}
getByName("debug") {
if (project.hasProperty("signing.store")) {
storeFile = file(project.findProperty("signing.store")!!)
storePassword = project.findProperty("signing.store_passphrase")!!.toString()
keyAlias = "ffa"
keyPassword = project.findProperty("signing.key_passphrase")!!.toString()
2019-10-21 23:26:06 +02:00
}
}
}
2021-07-30 10:57:49 +02:00
testOptions {
2021-08-04 10:41:42 +02:00
execution = "ANDROID_TEST_ORCHESTRATOR"
animationsDisabled = true
unitTests {
isReturnDefaultValues = true
isIncludeAndroidResources = true
}
2021-07-30 10:57:49 +02:00
}
2019-10-21 23:26:06 +02:00
buildTypes {
getByName("debug") {
isDebuggable = true
applicationIdSuffix = ".dev"
2021-08-06 21:16:46 +02:00
isTestCoverageEnabled = true
2021-07-13 10:30:33 +02:00
if (project.hasProperty("signing.store")) {
signingConfig = signingConfigs.getByName("debug")
}
resValue("string", "debug.hostname", props.getProperty("debug.hostname", ""))
resValue("string", "debug.username", props.getProperty("debug.username", ""))
resValue("string", "debug.password", props.getProperty("debug.password", ""))
}
2019-10-21 23:26:06 +02:00
getByName("release") {
2021-07-13 10:30:33 +02:00
if (project.hasProperty("signing.store")) {
signingConfig = signingConfigs.getByName("release")
}
2019-10-21 23:26:06 +02:00
resValue("string", "debug.hostname", "")
resValue("string", "debug.username", "")
resValue("string", "debug.password", "")
isMinifyEnabled = true
isShrinkResources = true
2019-10-21 23:26:06 +02:00
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
2019-10-21 23:26:06 +02:00
}
}
}
ktlint {
debug.set(false)
verbose.set(false)
}
play {
enabled.set(props.hasProperty("play.credentials"))
2019-10-21 23:26:06 +02:00
if (enabled.get()) {
serviceAccountCredentials.set(file(props.getProperty("play.credentials")))
defaultToAppBundles.set(true)
track.set("beta")
2019-10-21 23:26:06 +02:00
}
}
dependencies {
2023-01-10 13:56:20 +01:00
val navVersion: String by rootProject.extra
val lifecycleVersion: String by rootProject.extra
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar", "*.aar"))))
2019-10-21 23:26:06 +02:00
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
2019-10-21 23:26:06 +02:00
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("androidx.core:core-ktx:1.9.0")
2023-01-10 13:56:20 +01:00
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion")
implementation("androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion")
implementation("androidx.coordinatorlayout:coordinatorlayout:1.2.0")
implementation("androidx.preference:preference-ktx:1.2.1")
implementation("androidx.recyclerview:recyclerview:1.2.1")
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
2023-10-02 20:30:09 +02:00
implementation("com.google.android.material:material:1.9.0") {
exclude("androidx.constraintlayout")
}
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
2019-10-21 23:26:06 +02:00
implementation("com.google.android.exoplayer:exoplayer-core:2.18.1")
implementation("com.google.android.exoplayer:exoplayer-ui:2.18.1")
implementation("com.google.android.exoplayer:extension-mediasession:2.18.1")
implementation("io.insert-koin:koin-core:3.5.3")
implementation("io.insert-koin:koin-android:3.5.3")
testImplementation("io.insert-koin:koin-test:3.5.3")
implementation("com.github.PaulWoitaschek.ExoPlayer-Extensions:extension-opus:789a4f83169cff5c7a91655bb828fde2cfde671a") {
isTransitive = false
}
implementation("com.github.PaulWoitaschek.ExoPlayer-Extensions:extension-flac:789a4f83169cff5c7a91655bb828fde2cfde671a") {
isTransitive = false
}
implementation("com.github.AliAsadi:PowerPreference:2.1.1")
2022-08-25 14:58:19 +02:00
implementation("com.github.kittinunf.fuel:fuel:2.3.1")
implementation("com.github.kittinunf.fuel:fuel-coroutines:2.3.1")
implementation("com.github.kittinunf.fuel:fuel-android:2.3.1")
implementation("com.github.kittinunf.fuel:fuel-gson:2.3.1")
implementation("com.google.code.gson:gson:2.10.1")
2019-10-21 23:26:06 +02:00
implementation("com.squareup.picasso:picasso:2.71828")
implementation("jp.wasabeef:picasso-transformations:2.4.0")
2022-08-25 14:58:19 +02:00
implementation("net.openid:appauth:0.11.1")
2023-01-10 13:56:20 +01:00
implementation("androidx.navigation:navigation-fragment-ktx:$navVersion")
implementation("androidx.navigation:navigation-ui-ktx:$navVersion")
2021-07-30 10:57:49 +02:00
testImplementation("junit:junit:4.13.2")
testImplementation("io.mockk:mockk:1.13.4")
testImplementation("androidx.test:core:1.5.0")
testImplementation("io.strikt:strikt-core:0.34.1")
testImplementation("org.robolectric:robolectric:4.9.2")
debugImplementation("io.sentry:sentry-android:6.17.0")
androidTestImplementation("io.mockk:mockk-android:1.13.4")
2023-01-10 13:56:20 +01:00
androidTestImplementation("androidx.navigation:navigation-testing:$navVersion")
2021-07-30 10:57:49 +02:00
}
project.afterEvaluate {
2021-08-06 21:16:46 +02:00
tasks.withType<Test> {
configure<JacocoTaskExtension> {
isIncludeNoLocationClasses = true
excludes = listOf("jdk.internal.*")
}
}
tasks.create("jacocoTestReport", type = JacocoReport::class) {
dependsOn("testDebugUnitTest", "createDebugCoverageReport")
group = "Verification"
description = "Creates a Jacoco Coverage report"
2021-08-04 10:41:42 +02:00
reports {
xml.required.set(true)
csv.required.set(true)
html.required.set(true)
2021-07-30 10:57:49 +02:00
}
2021-08-06 21:16:46 +02:00
val fileFilter = listOf(
"**/R.class",
"**/R$*.class",
"**/BuildConfig.*",
"**/Manifest*.*",
"**/*Test*.*",
"android/**/*.*",
"**/*$[0-9].*"
)
val debugTree = fileTree("${project.buildDir}/tmp/kotlin-classes/debug") {
setExcludes(fileFilter)
}
val mainSrc = "${project.projectDir}/src/main/java"
sourceDirectories.setFrom(files(listOf(mainSrc)))
classDirectories.setFrom(files(listOf(debugTree)))
2021-09-09 09:56:15 +02:00
executionData.setFrom(
fileTree(project.buildDir) {
setIncludes(
listOf(
"outputs/unit_test_code_coverage/debugUnitTest/*.exec",
"outputs/code_coverage/debugAndroidTest/connected/**/*.ec"
)
2021-08-06 21:16:46 +02:00
)
2021-09-09 09:56:15 +02:00
}
)
2021-07-30 10:57:49 +02:00
}
2019-10-21 23:26:06 +02:00
}