1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-23 04:41:16 +00:00
syncthing-android/syncthing/build.gradle

19 lines
496 B
Groovy
Raw Permalink Normal View History

plugins {
id 'ru.vyarus.use-python' version '3.0.0'
}
task buildNative(type: PythonTask) {
environment "NDK_VERSION", "$ndkVersionShared"
2018-07-17 23:17:58 +00:00
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`.
*/
task cleanNative(type: Delete) {
2018-07-17 23:17:58 +00:00
delete "$projectDir/../app/src/main/jniLibs/"
delete "gobuild"
}