diff --git a/android/dependencies.gradle b/android/dependencies.gradle index 8cec38f18c..e22d7c6fc6 100644 --- a/android/dependencies.gradle +++ b/android/dependencies.gradle @@ -1,4 +1,5 @@ ext.libs = [ junit : "junit:junit:4.13", - annotations: "org.jetbrains:annotations:16.0.1" + annotations: "org.jetbrains:annotations:16.0.1", + javaxJson : "javax.json:javax.json-api:1.1.4" ] \ No newline at end of file diff --git a/java_console/shared_io/build.gradle b/java_console/shared_io/build.gradle index afcb6474e9..e48da1d0d1 100644 --- a/java_console/shared_io/build.gradle +++ b/java_console/shared_io/build.gradle @@ -5,5 +5,6 @@ plugins { apply from: '../../android/dependencies.gradle' dependencies { + implementation libs.javaxJson testImplementation libs.junit } \ No newline at end of file