Reputation: 467
I make a new project and build it successfully.But I cannot find where android studio put .class files
I tried
find
commandBut I cannot find MainActivity.class
or some others.
Where does android studio put .class files?
Upvotes: 4
Views: 5503
Reputation: 2092
Rename the following .jar file to .zip and unzip it.
build/intermediates/intermediate-jars/debug/classes.jar
Upvotes: 1
Reputation: 2015
You can find them in the build/intermediates/classes/debug/* directory.
Upvotes: 4