mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 04:41:16 +00:00
12 lines
314 B
Groovy
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"
|
|
}
|