Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: keystore.properties not found when cloning project

I'm trying to clone a repository from GitHub. While importing the project I'm getting an error:

E:\ProjectDir\keystore.properties (The system cannot find the file specified)

I've never encountered this problem when importing other repos from GitHub.

like image 370
RandomyzeEverything Avatar asked Oct 08 '17 12:10

RandomyzeEverything


1 Answers

Make text file named keystore.properties in the root of project and insert the 4 below parameters in it:

storeFile="relative path to your keystore file"
storePassword="keystore file pass"
keyAlias=
keyPassword=

then rebuild your project.

like image 169
Hojjat Avatar answered Sep 18 '22 04:09

Hojjat