我用gradle重命名我的输出apk文件:
buildTypes {
debug {
...
applicationVariants.all { variant ->
variant.outputs.each { output ->
output.outputFile = new File(output.outputFile.parent,
output.outputFile.name.replace("-debug", "-GGG-" + getDate())
)
}
}
}
}
def getDate() {
def date = new Date()
def formattedDate = date.format('yyyyMMddHHmm')
return formattedDate
}
但是当我尝试通过Android Studio将应用安装到手机时出现错误:
The APK file C:\...\app\build\outputs\apk\app-GGG-201604191416.apk does not exist on disk.
Error while Installing APK
但是,应该安装名为app-GGG-201604191431.apk的文件。 为什么Android Studio会尝试早期安装apk,以及我如何解决它?