Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 449 Bytes

File metadata and controls

18 lines (14 loc) · 449 Bytes

QuickLook.ApkReader

This is a part of the QuickLook program, migrated from apk-reader.

Read apk info (package name etc..) with out appt.

var reader = new ApkReader();
var info = reader.Read(@"D:\tmp\wx.apk");
Console.Clear();
var json = JsonConvert.SerializeObject(info,new JsonSerializerSettings
{
    Formatting = Formatting.Indented
});
Console.WriteLine(json);
Console.ReadLine();