This commit is contained in:
buthed010203
2021-09-30 12:44:39 -04:00
parent 56ed83f363
commit cf688e50ab
3 changed files with 16 additions and 8 deletions

View File

@@ -56,6 +56,15 @@ task dexify(type: Jar) {
task buildDex dependsOn "build", "dexify"
task buildMove(dependsOn: build) {
doLast {
copy {
from "build/libs/UnitInfo.jar"
into System.getenv("destination")
}
}
}
tasks.withType(JavaCompile){
targetCompatibility = 8
sourceCompatibility = JavaVersion.VERSION_16