newlogic / smartscanner-core

ID scanning Android app and library. Supports MRZ, NFC, Barcodes, and ID PASS Lite cards.
Apache License 2.0
70 stars 19 forks source link

Problems with project compilation -- missing signing.properties #122

Closed IvyMasterDiego closed 1 year ago

IvyMasterDiego commented 1 year ago

Current behavior

I can't compile the project correctly, it shows me the error: signing.properties (The system cannot find the file specified)

Context

I really just clone the project and try to compile it and it won't let me.

rjmangubat23 commented 1 year ago

Hello @IvyMasterDiego! 👋🏻

Please note that we chose not to commit our signing.properties file for security reasons.

  1. So you will have to create your own keystore named upload-keystore and overwrite the existing one we have.

  2. Create your own signing.properties file containing the following below:

STORE_PASSWORD=yourkeystorepass
KEY_ALIAS=projectkeyalias
KEY_PASSWORD=keyaliaspassword

Then try to rebuild and compile. 🙏🏻

IvyMasterDiego commented 1 year ago

Ok, I'll try and see, thanks. :)