By default IDE genarate a apk like app-debug.apk
or app-release.apk
file but I need to generate specific name of the Apk of the Ap
On my PC, it suffices to rename (through refactor) app to the desired name yourName. After that, include ':app'
in setting.grandle file is changed to include ':yourName'
. However, in my case I need to close/reopen Android Studio because of sync error. As a result, obtain apk something like yourName-debug.apk and yourName-release.apk.