mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
589 B
20 lines
589 B
plugins {
|
|
alias libs.plugins.android.application apply false
|
|
alias libs.plugins.android.library apply false
|
|
alias libs.plugins.chaquo.python apply false
|
|
}
|
|
|
|
tasks.register('clean', Delete) {
|
|
delete rootProject.layout.buildDirectory
|
|
}
|
|
|
|
project(':app').tasks.matching { it.name ==~ /assemble.+Release/ }.configureEach {
|
|
doLast {
|
|
copy {
|
|
from fileTree("$rootDir/app/build/outputs/apk") { include '**/release/*.apk' }
|
|
into "$rootDir/Release/apk"
|
|
eachFile { it.path = it.name }
|
|
includeEmptyDirs = false
|
|
}
|
|
}
|
|
} |