0

I have an .apk I decompiled and I see there are **.so** files used in that code.

How do I find the **.mk** file from that source code?

David Rawson
  • 20,912
  • 7
  • 88
  • 124

1 Answers1

1

You can't.

Build scripts like build.gradle and the .mk, if there even was one, are used to build the .apk but are not included in the output of the build i.e., the packaged .apk

David Rawson
  • 20,912
  • 7
  • 88
  • 124