I'm super overwhelmed with the tons of information out there and my issue is a pretty simple one.
I have made a project in IntelliJ Idea which has a package called com.example.util
. In this package, I've got some static classes that I want to use in other projects.
Now, I have an Android Project and I want to use the classes in that util package.
However, I can't find an easy way that allows me to keep a flow state editing the two projects (Android and Util). I can compile the util package into a single JAR file and then copy-paste it inside the libs
folder in Android but that's too much work and not efficient.
Can someone explain me this? All I want is to keep writing on the Util package and have the Android project pull all the classes.