2016-10-05 18:25:09 +02:00
|
|
|
import org.apache.tools.ant.taskdefs.condition.Os
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
2021-05-28 18:12:50 +02:00
|
|
|
apply plugin: 'maven-publish'
|
2016-10-05 18:25:09 +02:00
|
|
|
|
|
|
|
android {
|
2021-04-16 17:43:30 +02:00
|
|
|
compileSdkVersion 30
|
2016-10-05 18:25:09 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2021-04-16 21:50:13 +02:00
|
|
|
minSdkVersion 14
|
2021-04-16 17:43:30 +02:00
|
|
|
targetSdkVersion 30
|
2021-04-16 21:50:13 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
|
|
|
// The following argument makes the Android Test Orchestrator run its
|
|
|
|
// "pm clear" command after each test invocation. This command ensures
|
|
|
|
// that the app's state is completely cleared between tests.
|
|
|
|
testInstrumentationRunnerArguments clearPackageData: 'true'
|
2016-10-05 18:25:09 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
2017-01-09 16:39:54 +01:00
|
|
|
debug {
|
|
|
|
resValue "string", "git_olm_revision", "\"${gitRevision()}\""
|
|
|
|
resValue "string", "git_olm_revision_unix_date", "\"${gitRevisionUnixDate()}\""
|
|
|
|
resValue "string", "git_olm_revision_date", "\"${gitRevisionDate()}\""
|
|
|
|
}
|
|
|
|
|
2016-10-05 18:25:09 +02:00
|
|
|
release {
|
2017-01-09 16:39:54 +01:00
|
|
|
resValue "string", "git_olm_revision", "\"${gitRevision()}\""
|
|
|
|
resValue "string", "git_olm_revision_unix_date", "\"${gitRevisionUnixDate()}\""
|
|
|
|
resValue "string", "git_olm_revision_date", "\"${gitRevisionDate()}\""
|
|
|
|
|
2016-10-05 18:25:09 +02:00
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sourceSets.main {
|
|
|
|
jniLibs.srcDir 'src/main/libs'
|
|
|
|
jni.srcDirs = []
|
|
|
|
}
|
|
|
|
|
2021-04-16 17:43:30 +02:00
|
|
|
task buildJavaDoc(type: Javadoc) {
|
2016-10-26 18:15:37 +02:00
|
|
|
source = android.sourceSets.main.java.srcDirs
|
|
|
|
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
|
|
|
|
destinationDir = file("./doc/")
|
2016-11-07 11:00:01 +01:00
|
|
|
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PRIVATE
|
2016-10-26 18:15:37 +02:00
|
|
|
failOnError false
|
|
|
|
}
|
|
|
|
|
2016-10-06 19:55:03 +02:00
|
|
|
task ndkBuildNativeRelease(type: Exec, description: 'NDK building..') {
|
|
|
|
println 'ndkBuildNativeRelease starts..'
|
2016-10-05 18:25:09 +02:00
|
|
|
workingDir file('src/main')
|
2016-10-06 19:55:03 +02:00
|
|
|
commandLine getNdkBuildCmd(), 'NDK_DEBUG=0'
|
|
|
|
}
|
|
|
|
|
|
|
|
task ndkBuildNativeDebug(type: Exec, description: 'NDK building..') {
|
|
|
|
println 'ndkBuildNativeDebug starts..'
|
|
|
|
workingDir file('src/main')
|
|
|
|
commandLine getNdkBuildCmd(), 'NDK_DEBUG=1'
|
2016-10-05 18:25:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
task cleanNative(type: Exec, description: 'Clean NDK build') {
|
|
|
|
workingDir file('src/main')
|
|
|
|
commandLine getNdkBuildCmd(), 'clean'
|
|
|
|
}
|
|
|
|
|
2016-10-06 19:55:03 +02:00
|
|
|
tasks.withType(JavaCompile) {
|
2021-04-16 17:43:30 +02:00
|
|
|
compileTask ->
|
|
|
|
if (compileTask.name.startsWith('compileDebugJava')) {
|
|
|
|
println 'test compile: Debug'
|
|
|
|
compileTask.dependsOn ndkBuildNativeDebug
|
|
|
|
} else if (compileTask.name.startsWith('compileReleaseJava')) {
|
|
|
|
println 'test compile: Release'
|
|
|
|
compileTask.dependsOn ndkBuildNativeRelease
|
|
|
|
}
|
|
|
|
compileTask.dependsOn buildJavaDoc
|
2016-10-05 18:25:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
clean.dependsOn cleanNative
|
2016-11-23 00:01:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
libraryVariants.all { variant ->
|
|
|
|
variant.outputs.each { output ->
|
2018-06-26 10:39:33 +02:00
|
|
|
def outputFile = output.outputFileName
|
|
|
|
if (outputFile != null && outputFile.endsWith('.aar')) {
|
|
|
|
output.outputFileName = outputFile.replace(".aar", "-${version}.aar")
|
2016-11-23 00:01:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-05 18:25:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def getNdkFolder() {
|
|
|
|
Properties properties = new Properties()
|
|
|
|
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
|
|
|
def ndkFolder = properties.getProperty('ndk.dir', null)
|
|
|
|
if (ndkFolder == null)
|
|
|
|
throw new GradleException("NDK location missing. Define it with ndk.dir in the local.properties file")
|
|
|
|
|
|
|
|
return ndkFolder
|
|
|
|
}
|
|
|
|
|
|
|
|
def getNdkBuildCmd() {
|
|
|
|
def ndkBuildCmd = getNdkFolder() + "/ndk-build"
|
|
|
|
if (Os.isFamily(Os.FAMILY_WINDOWS))
|
|
|
|
ndkBuildCmd += ".cmd"
|
|
|
|
|
|
|
|
return ndkBuildCmd
|
|
|
|
}
|
|
|
|
|
2017-01-09 16:39:54 +01:00
|
|
|
def gitRevision() {
|
|
|
|
def cmd = "git rev-parse --short HEAD"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
def gitRevisionUnixDate() {
|
|
|
|
def cmd = "git show -s --format=%ct HEAD^{commit}"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
def gitRevisionDate() {
|
|
|
|
def cmd = "git show -s --format=%ci HEAD^{commit}"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
2016-10-05 18:25:09 +02:00
|
|
|
dependencies {
|
2021-04-16 17:43:30 +02:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
androidTestImplementation 'junit:junit:4.13.2'
|
|
|
|
|
2021-04-16 21:50:13 +02:00
|
|
|
androidTestImplementation 'androidx.test:core:1.3.0'
|
2021-04-16 17:43:30 +02:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.3.0'
|
|
|
|
androidTestImplementation 'androidx.test:rules:1.3.0'
|
2021-04-16 21:50:13 +02:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
2016-10-05 18:25:09 +02:00
|
|
|
}
|
2021-05-28 18:12:50 +02:00
|
|
|
|
|
|
|
project.afterEvaluate {
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
release(MavenPublication) {
|
|
|
|
from components.release
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|