I'm trying to compile a lib using the SLC tool.
The lib has this lines in the java file:
To the androidx.annotation I found the jar, but I don't found the jars to the others references.
When I try to compile I get this errors:
How can I fix it? With Android libs?
Thanks in advance for any tip.
The lib has this lines in the java file:
B4X:
import androidx.annotation.NonNull;
import android.util.JsonReader;
import android.text.TextUtils;
To the androidx.annotation I found the jar, but I don't found the jars to the others references.
When I try to compile I get this errors:
B4X:
Starting step: Compiling Java code.
javac 1.8.0_92
E:\B4X\\Exemplos\DONMANFRED\newstk-src\src\com\newstk\ContentFileParser.java:13: error: package android.util does not exist
import android.util.JsonReader;
^
1 error
\ContentFileParser.java:14: error: package android.text does not exist
import android.text.TextUtils;
Thanks in advance for any tip.