-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
118 lines (103 loc) · 4.67 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<meta charset="utf-8">
<meta name="description" content="APK method count">
<meta name="keywords" content="apk,dex,limit,methods,count,packages,classes">
<meta name="author" content="Juraj Novák">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>APK method count</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link rel="image_src" href="img/icon.png" />
<link rel="icon" type="image/png" href="img/icon.png"/>
</head>
<body>
<img src="img/icon.png" style="display: none;"/>
<div id="main-container" class="container">
<div id="header">
<img src="img/logo.svg" class="img-responsive pull-left" style="margin-right: 16px;" />
<h3>APK method count</h3>
<p>output per-package method counts</p>
</div>
<div id="compat-error" class="alert alert-danger" style="display: none">
<div class="clearfix">
<img src="img/seriously.png" class="img-responsive pull-left"/>
<p>Sorry but your browser does not support some of new HTML5 features! Try using latest version of Google Chrome or
Firefox.</p>
</div>
</div>
<div class="panel panel-info" id="dropzone">
<div id="drop-text" class="panel-body">
<b>Drop file here</b> to load content or click on this box to open file dialog.<br/>
<div class="nouploadinfo small">No file will be uploaded - uses only JavaScript HTML5 FileReader.<br /><br /></div>
</div>
<div id="drop-loading" class="panel-body" style="display: none">
<span class="glyphicon glyphicon-refresh glyphicon-refresh-animate"></span> <b>Processing file ...</b>
</div>
</div>
<div class="alert alert-info box" id="success-box" style="display: none">
<b>Total methods count: </b><span id="method-count-total"></span> <span id="method-count-multidex"></span>
</div>
<div id="output-box">
<div id="button-box" class="btn-group">
<button type="button" class="btn btn-default btn-sm" id="expand-collapse-btn">Expand</button>
<button type="button" class="btn btn-primary btn-sm" id="download-btn">Download</button>
</div>
<div id="package-tree" class="tree well">
</div>
</div>
<div class="alert alert-danger box" style="display: none"></div>
<div class="alert alert-warning box" style="display: none"></div>
<div class="alert alert-info box" style="display: none"></div>
</div>
<div id="package-detail" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title"></h4>
</div>
<div class="modal-body">
<table class="table">
<thead>
<tr>
<th>Class</th>
<th>Methods</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<div class="container">
<footer>
<a href="https://yuraj11.github.io">© 2024 Juraj Novák</a><br>
<small>| <a href="https://github.com/inloop/apk-method-count">Fork me on GitHub</a> |</small>
</footer>
</div>
<input type="file" id="dropzone-dialog" style="opacity: 0;display:none">
<script src="js/libs/jquery-1.11.3.min.js"></script>
<script src="js/libs/bootstrap.min.js"></script>
<script src="js/libs/filereader.js"></script>
<script src="js/libs/filesaver.min.js"></script>
<script src="js/libs/jszip.min.js"></script>
<script src="js/libs/jdataview.js"></script>
<script src="js/main.js?v=5"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59852117-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>