Files
open-keychain/sshauthentication-api/build.gradle
Vincent Breitmoser 5d84bd8387 Update AGP to 7.4.2, update SqlDelight to 1.4.2
The adaptations to SqlDelight 1.4.2 leave the type namings *extremely*
messy. But it works and is as semantically equivalent as I could make
it.
2024-01-29 16:42:28 +01:00

52 lines
1.5 KiB
Groovy

apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
android {
defaultConfig {
minSdkVersion 14
versionCode 3
versionName "3.0"
namespace 'org.openintents.ssh.authentication'
if (project.hasProperty('compileSdkVersion')) {
compileSdk rootProject.ext.compileSdkVersion
} else {
compileSdk 28
}
}
// Do not abort build if lint finds errors
lintOptions {
abortOnError false
}
}
// https://developer.android.com/studio/build/maven-publish-plugin
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'org.sufficientlysecure'
artifactId = 'sshauthentication-api'
version = android.defaultConfig.versionName
pom {
url = 'https://github.com/open-keychain'
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
organization {
name = 'Confidential Technologies GmbH'
url = 'https://www.cotech.de'
}
}
}
}
}
}