mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
22 lines
638 B
Text
22 lines
638 B
Text
|
import ru.vyarus.gradle.plugin.python.task.PythonTask
|
||
|
|
||
|
plugins {
|
||
|
id("ru.vyarus.use-python") version "3.0.0"
|
||
|
}
|
||
|
|
||
|
tasks.register<PythonTask>("buildNative") {
|
||
|
val ndkVersionShared = rootProject.extra.get("ndkVersionShared")
|
||
|
environment("NDK_VERSION", "$ndkVersionShared")
|
||
|
inputs.dir("$projectDir/src/")
|
||
|
outputs.dir("$projectDir/../app/src/main/jniLibs/")
|
||
|
command = "-u ./build-syncthing.py"
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Use separate task instead of standard clean(), so these folders aren't deleted by `gradle clean`.
|
||
|
*/
|
||
|
tasks.register<Delete>("cleanNative") {
|
||
|
delete("$projectDir/../app/src/main/jniLibs/")
|
||
|
delete("gobuild")
|
||
|
}
|