Reputation: 177
I am trying to find .class files in an android Studio project. Is there a way to generate the .class files using android studio?
Upvotes: 1
Views: 1639
Reputation: 2781
Classes are located in your app -> build -> intermediates -> classes -> <build config> -> <package name>
Upvotes: 1
Reputation: 16214
In the Android studio, there is a very simple way to do it. Go to "find everywhere" (short cut ctrl + shift + F) and filter by *.class, look at the image above:
Upvotes: 1