Skip to content

Instantly share code, notes, and snippets.

View uOOOO's full-sized avatar
💤
AFK

SeungHun Choe uOOOO

💤
AFK
  • Seoul, South Korea
View GitHub Profile
@uOOOO
uOOOO / copy.gradle
Created September 6, 2017 04:47
Copy apk to specific path after assemble
task zipUnitTestReport(type: Zip) {
from project.buildDir
include "reports/**", "test-results/**"
archiveName "unitTestReport.${extension}"
}
def setBuildTime() {
project.ext.set("buildTime", System.currentTimeMillis())
}