Skip to content

Commit

Permalink
Revert "lib: aapt: fix label"
Browse files Browse the repository at this point in the history
This reverts commit f063fc8.
  • Loading branch information
hariimurti committed Sep 19, 2020
1 parent 743b942 commit 5d0a611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ApkManager/Lib/Aapt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public static async Task<Result> DumbBadging(string pathApk)
if (match.Success) apk.VersionName = match.Groups[1].Value;

//label
match = Regex.Match(output, "application: label='(.+?)' icon");
match = Regex.Match(output, "application: label='(.+?)'");
if (match.Success) apk.Label = match.Groups[1].Value;

//icon
Expand Down

0 comments on commit 5d0a611

Please sign in to comment.