How to find Android apk files using the find command

Tadashi Shigeoka ·  Thu, April 18, 2019

I’ll introduce how to find apk files created for Android app releases using the find command.

Android Studio

Command to Find apk Files

You can find apk files using the find command as follows:

find . -name "*.apk" 

That’s all from the Gemba, where we want to quickly find apk files created with gradlew.