1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-22 20:31:16 +00:00
syncthing-android/syncthing/build.gradle

12 lines
314 B
Groovy

task buildNative(type: Exec) {
outputs.upToDateWhen { false }
executable = './build-syncthing.bash'
}
/**
* Use seperate task instead of standard clean(), so these folders aren't deleted by `gradle clean`.
*/
task cleanNative(type: Delete) {
delete "../app/src/main/jniLibs/"
delete "gobuild"
}