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

Commit 45bc00d

Browse files
committed
Published ADO extension
1 parent c783c30 commit 45bc00d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ado-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "android-app-size-diff",
44
"name": "Android app size changes",
5-
"version": "0.0.22",
5+
"version": "0.0.24",
66
"publisher": "PraveenPendyala",
77
"targets": [
88
{

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "android-app-size-ado",
3-
"version": "0.0.22",
3+
"version": "0.0.24",
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": {
@@ -52,4 +52,4 @@
5252
"ts-node": "^8.5.4",
5353
"typescript": "^3.7.4"
5454
}
55-
}
55+
}

src/task.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"version": {
1111
"Major": 0,
1212
"Minor": 0,
13-
"Patch": 22
13+
"Patch": 24
1414
},
1515
"instanceNameFormat": "Android App size change - $(baseAppPath) vs $(targetAppPath)",
1616
"inputs": [
@@ -20,15 +20,15 @@
2020
"label": "Base app path",
2121
"defaultValue": "",
2222
"required": true,
23-
"helpMarkDown": "Path to base apk / aab. This is the app before changes"
23+
"helpMarkDown": "Path to base apk. This is the app before changes"
2424
},
2525
{
2626
"name": "targetAppPath",
2727
"type": "string",
2828
"label": "Target app path",
2929
"defaultValue": "",
3030
"required": true,
31-
"helpMarkDown": "Path to target apk / aab. This is the app after changes"
31+
"helpMarkDown": "Path to target apk. This is the app after changes"
3232
},
3333
{
3434
"name": "summaryOutputPath",

0 commit comments

Comments
 (0)