我重新命名我的輸出APK文件與gradle這個:更名APK不能安裝通過Android Studio中
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,以及我可以如何解決它?
您是否執行了完整的項目清理+重新啓動AS? – Benoit
@Benoit是的,但這並沒有幫助我 –
@OvechkinPavel:你有解決你的問題嗎? –