mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 13:44:40 +00:00
Added Brave download tasks
This commit is contained in:
parent
5a996c8e49
commit
5213606949
1 changed files with 16 additions and 0 deletions
|
@ -417,6 +417,22 @@ task downloadPSL(type: Download) {
|
|||
overwrite true
|
||||
}
|
||||
|
||||
task downloadBraveClean(type: Download) {
|
||||
src "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-lists/clean-urls.json"
|
||||
dest "src/main/assets"
|
||||
overwrite true
|
||||
}
|
||||
|
||||
task downloadBraveDebouce(type: Download) {
|
||||
src "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-lists/debounce.json"
|
||||
dest "src/main/assets"
|
||||
overwrite true
|
||||
}
|
||||
|
||||
task downloadBrave() {
|
||||
dependsOn("downloadBraveClean", "downloadBraveDebouce")
|
||||
}
|
||||
|
||||
task extractSignature(type: Exec) {
|
||||
workingDir "${rootDir}"
|
||||
// sudo apt install apksigcopier
|
||||
|
|
Loading…
Reference in a new issue