Rightpoint / android-template

A `cookiecutter` template for Android projects
28 stars 4 forks source link

Generate keystore files and passwords at project generation time. #19

Closed octohub closed 5 years ago

octohub commented 6 years ago

The generated build.gradle file references a keystores directory at the root of the project that is not created when the project is generated. I have some proposals around this:

  1. Generate the keystore files when the project is generated.
  2. Generate a file which holds a randomly generated STORE_PASSWORD and KEY_PASSWORD. This file will have a TODO item to remind the devs to store the passwords in 1Password. It will also have a disclaimer reminder the devs to never commit the passwords to the repo.
  3. Add this generated password file to the .gitignore so it is not committed to the repo.

@jonduran3000 and team, what do you think of this?