File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ Version 0.2.4
5
+ ----------------------------
6
+ * Switch from unmaintained Stetho to the maintained forked repo: https://github.com/yinyinnie/stetho
7
+ * Allows editing JS code from Chrome dev tools
8
+ * Fixes the states when debugger is stuck in paused state by adding some extra checks and resuming it if happens.
9
+
10
+
4
11
Version 0.2.3
5
12
----------------------------
6
13
* Check if debugger has DevTools connection before sending messages from J2V8. If not, resume debugger (prevents getting stuck in paused state).
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ allprojects {
26
26
Add dependency in * gradle.build* file of your app module
27
27
``` gradle
28
28
dependencies {
29
- implementation ('com.github.AlexTrotsenko:j2v8-debugger:0.2.3 ') // {
29
+ implementation ('com.github.AlexTrotsenko:j2v8-debugger:0.2.4 ') // {
30
30
// optionally J2V8 can be excluded if specific version of j2v8 is needed or defined by other libs
31
31
// exclude group: 'com.eclipsesource.j2v8'
32
32
// }
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx1536m
16
16
kotlin.code.style =official
17
17
18
18
# publishing settings for Gradle build script
19
- VERSION_NAME =0.2.3
19
+ VERSION_NAME =0.2.4
20
20
# make group name of local build to be the same as by JitPack builds
21
21
GROUP_NAME =com.github.AlexTrotsenko
22
22
android.useAndroidX =true
You can’t perform that action at this time.
0 commit comments