Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 437 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 437 Bytes

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();