I have created an Android project and added an external JAR on IntelliJ. I have already installed "json-simple-1.1.jar" to use package org.jose4j.json.internal.json_simple. I did a library setting to use that from the project structure menu. But when I run the program, error message says, "error: package org.jose4j.json.internal.json_simple does not exist import org.jose4j.json.internal.json_simple.JSONArray;". (Not only JSONArray, but the other JSON such as JSONObject)
It worked when I used that outside of the Android project. Are there any special settings for the Android project?
So far, I stored the jar file under the project folder by making "lib" folder additionally.