I downloaded the zip file of an Android app on github and I'm trying to run it, but I get a dialog with this message
app-release-unsigned.apk is not signed. Please configure the signing information for the selected flavor using the Project Structure dialog.
I'm using Android Studio. What am I supposed to do?
If anyone wants to debug release build using Android Studio, follow these steps:
Right click on app in left navigation pane, click Open Module Settings.
Go to Signing Tab. Add a signing config and fill in information. Select your keychain as well.
-Debuggable to true.
-Signing Config to the config. (The one you just created).
Sync your gradle. Enjoy!