Skip to content
This repository was archived by the owner on Mar 26, 2024. It is now read-only.

Commit 886f17f

Browse files
committed
Bug fix in report
1 parent 87a714b commit 886f17f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist_gh_action/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "android-app-size-diff",
3-
"version": "0.0.31",
3+
"version": "0.0.32",
44
"description": "Azure DevOps task to measure the size in Android app size by looking at 2 given APKs and AABs",
55
"main": "index.js",
66
"scripts": {

src/apkAnalyzer/ComparisionReportGenerator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import IReportor from './reporter/IReporter';
3131

3232
includeMetrics.forEach((metric, index) => {
3333
const baseMetric = baseSummary.sizeMetrics[metric];
34-
const targetMetric = baseSummary.sizeMetrics[metric];
34+
const targetMetric = targetSummary.sizeMetrics[metric];
3535
const difference = targetMetric - baseMetric;
3636

3737
comparisionReport.comparisionMetrics.push({

0 commit comments

Comments
 (0)