Im trying to generate signed APK Using AndroidStudio but I get this error:
Error:A problem was found with the configuration of task \':app:packageRelease
Go to Build -> Generate Signed APK. Create your key (or choose existing) -> next -> next -> done!
If you want to do it "hard way" you need to specify already created release key into signingConfigs before buildTypes. Something like this:
signingConfigs {
release {
storeFile file("/yourkey.jks") //check that the file exists
storePassword "YourPassword"
keyAlias "YourAlias"
keyPassword "YourPassword"
}
}
But this is useless somewhat. Because Android Studio provides very simple and easy way to create a signed APK file ready for publishing. And also specifying your key's password into the build.gradle file... - it isn't advisable to do it in terms of security.