Remove the old hack that moves the output file around

This commit is contained in:
Michael Zanetti 2019-06-12 11:48:40 +02:00
parent 471005c6fa
commit f66ac04636

View File

@ -69,17 +69,4 @@ android {
lintOptions {
abortOnError false
}
/***************************************************************************
* This is a hack to copy the output apk one level up
* old versions of gradle have put it to build/apks/android-build-debug.apk
* new versions put it to build/apks/debug/android-build-debug.apk
* which breaks qtcreator deployment
* Remote this when QtCreator is updated to support new gradle
**************************************************************************/
applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "../" + outputFileName
}
}
}