Support .apk and .apk.1
Some checks are pending
MSBuild / build (push) Waiting to run
MSBuild / publish (push) Blocked by required conditions

This commit is contained in:
ema
2025-05-31 17:30:35 +08:00
parent 53d76cb0f8
commit 00829ec21b
15 changed files with 1602 additions and 43 deletions

View File

@@ -15,12 +15,8 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using Newtonsoft.Json.Linq;
using QuickLook.Plugin.AppViewer.AppxPackageParser;
using System.Collections.Generic;
using System.Globalization;
using System.Resources;
using System.Text.RegularExpressions;
namespace QuickLook.Plugin.AppViewer.WgtPackageParser;
@@ -84,12 +80,12 @@ public sealed class WgtInfo
public string CompilerVersion { get; set; }
/// <summary>
/// Json path: version.name
/// Json path: versionName.name
/// </summary>
public string AppVersion { get; set; }
public string AppVersionName { get; set; }
/// <summary>
/// Json path: version.code
/// Json path: versionName.code
/// </summary>
public string AppVersionCode { get; set; }