diff --git a/app/build.gradle b/app/build.gradle index 756ac48..100f411 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -163,28 +163,7 @@ } applicationVariants.all { variant -> - if (variant.buildType.name == "release") { - variant.outputs.all { output -> - // Avoid to rename, so Fastlane default will work for now - //output.outputFile = new File(output.outputFile.parent, output.outputFile.name.replace("app-release.apk", "dappre_${versionName}.${versionCode}.apk")) - - if (variant.getBuildType().isMinifyEnabled()) { - variant.getAssembleProvider().configure() { - it.doLast { - copy { - from variant.mappingFile - into output.outputFile.parent - // Avoid to rename, so Fastlane default will work for now - //rename { - // String fileName -> - // "mapping_${versionName}.${versionCode}.txt" - //} - } - } - } - } - } - } + // Do something about all variants - previously used to copy/move some file around } }