Skip to content

Commit 05d12c8

Browse files
No packaging in assets folder as there is android build error for the first time for the user
1 parent 2be5ab8 commit 05d12c8

17 files changed

+18
-18
lines changed

debug-db/src/main/assets/debugDbHome/index.html renamed to debug-db/src/main/assets/index.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@
2323
<title>Android Debug Database</title>
2424
<meta charset="utf-8">
2525
<meta name="viewport" content="width=device-width, initial-scale=1">
26-
<link rel='shortcut icon' href='debugDbHome/images/favicon.ico' type='image/x-icon'>
27-
28-
<script src="debugDbHome/js/jquery.min.js"></script>
29-
<script src="debugDbHome/js/bootstrap.min.js"></script>
30-
<script src="debugDbHome/js/jquery.dataTables.min.js"></script>
31-
<script src="debugDbHome/js/dataTables.altEditor.free.js"></script>
32-
<script src="debugDbHome/js/dataTables.buttons.min.js"></script>
33-
<script src="debugDbHome/js/dataTables.select.min.js"></script>
34-
<script src="debugDbHome/js/dataTables.responsive.min.js"></script>
35-
36-
<link href="debugDbHome/css/bootstrap.min.css" rel="stylesheet">
37-
<link href="debugDbHome/css/custom.css" rel="stylesheet">
38-
<link href="debugDbHome/css/jquery.dataTables.min.css" rel="stylesheet">
39-
<link href="debugDbHome/css/buttons.dataTables.min.css" rel="stylesheet">
40-
<link href="debugDbHome/css/select.dataTables.min.css" rel="stylesheet">
41-
<link href="debugDbHome/css/responsive.dataTables.min.css" rel="stylesheet">
26+
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon'>
27+
28+
<script src="jquery.min.js"></script>
29+
<script src="bootstrap.min.js"></script>
30+
<script src="jquery.dataTables.min.js"></script>
31+
<script src="dataTables.altEditor.free.js"></script>
32+
<script src="dataTables.buttons.min.js"></script>
33+
<script src="dataTables.select.min.js"></script>
34+
<script src="dataTables.responsive.min.js"></script>
35+
36+
<link href="bootstrap.min.css" rel="stylesheet">
37+
<link href="custom.css" rel="stylesheet">
38+
<link href="jquery.dataTables.min.css" rel="stylesheet">
39+
<link href="buttons.dataTables.min.css" rel="stylesheet">
40+
<link href="select.dataTables.min.css" rel="stylesheet">
41+
<link href="responsive.dataTables.min.css" rel="stylesheet">
4242

4343
</head>
4444
<body>
@@ -158,6 +158,6 @@
158158

159159
</div>
160160

161-
<script src="debugDbHome/js/app.js"></script>
161+
<script src="app.js"></script>
162162
</body>
163163
</html>

debug-db/src/main/java/com/amitshekhar/server/RequestHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void handle(Socket socket) throws IOException {
9090
output = new PrintStream(socket.getOutputStream());
9191

9292
if (route == null || route.isEmpty()) {
93-
route = "debugDbHome/index.html";
93+
route = "index.html";
9494
}
9595

9696
byte[] bytes;

0 commit comments

Comments
 (0)