/* * Quasseldroid - Quassel client for Android * * Copyright (c) 2024 Janne Mareike Koschinski * Copyright (c) 2024 The Quassel Project * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3 as published * by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ import com.android.build.api.dsl.LibraryExtension import org.gradle.api.JavaVersion import org.gradle.api.Plugin import org.gradle.api.Project import org.gradle.kotlin.dsl.configure class AndroidLibraryConvention : Plugin<Project> { override fun apply(target: Project) { with(target) { with(pluginManager) { apply("com.android.library") apply("justjanne.kotlin.android") } extensions.configure<LibraryExtension> { compileSdk = 34 defaultConfig { minSdk = 21 consumerProguardFiles("proguard-rules.pro") // Disable test runner analytics testInstrumentationRunnerArguments["disableAnalytics"] = "true" } compileOptions { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } packaging { resources { excludes.add("/META-INF/*.md") } } lint { warningsAsErrors = true lintConfig = file("../lint.xml") } } } } }