replace quickjs with Mozilla Rhino (#415)

* replace quickjs with jdk 8 default js engine

* replace quickjs with rhino engine and translate type for read comic online extension

* move quick js to AndroidCompat

* fix commicabc long type cast exception
This commit is contained in:
like
2022-10-12 18:33:49 +08:00
committed by GitHub
parent 06eff55210
commit b1bf901eac
3 changed files with 76 additions and 1 deletions
@@ -0,0 +1,7 @@
package app.cash.quickjs;
public final class QuickJsException extends RuntimeException {
public QuickJsException(String message, Throwable cause) {
super(message, cause);
}
}