N.IT
N.IT

Reputation: 177

How to generate .class files?

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

Answers (2)

tim.paetz
tim.paetz

Reputation: 2781

Classes are located in your app -> build -> intermediates -> classes -> <build config> -> <package name>

Upvotes: 1

developer_hatch
developer_hatch

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:

enter image description here

Upvotes: 1

Related Questions