Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error:Execution failed for task ':app:validateExternalOverrideSigning'

I am using caldroid library for calendar activity and It works fine.

But I needed to change it's style.

So I added caldroid library(directory) under the application like this.

enter image description here

and I changed my dependencies

dependencies { ... compile 'com.roomorama:caldroid:2.3.1' ... }

to

dependencies { ... compile project(':libraries:caldroid') ... }

Then, It works fine under the debug mode.

But I can't generate signed APK because of this message.

Error:Execution failed for task ':app:validateExternalOverrideSigning'. Keystore file /Users/xxxxxxx.android.keystore not found for signing config 'externalOverride'.

Is there any solution about this error?

like image 779
Lee Sang Gil Avatar asked Jul 21 '26 05:07

Lee Sang Gil


1 Answers

I had this same problem here. The point is that when you created your KeyStore, Android Studio sent it to another place, different from the path of your app. Probably she was saved in

suaHome/documents/android-studio/bin

Just search it in this place and ready. Everything is solved. Tip: never miss this KeyStore view after you publish your APP with it. I have helped.

like image 174
Paulo Linhares - Packapps Avatar answered Jul 22 '26 20:07

Paulo Linhares - Packapps