I'm trying to compile an Android Studio Project manually (yes, I know Maven is better). Running
jar -cf Package.jar *
compiles both the .java
files and the .class
files into the jar
, when I only want the .class
files in there. Any way to do this?
I've tried *.class
, which leads to an error.