lrvideckis / Minesweeper_Android

Minesweeper Android App with solver & no-guess boards
MIT License
2 stars 0 forks source link

Overview

Relevant code found here.

Aren't there like a million minesweeper games out there? - Yup

Well, then how is this any different? - I'll tell you :)

Features:

Building a new release

A bash command to ask the user for passwords, then build+sign app. source. I don't want any passwords stored in plain text in this repo.

echo -n Key store password: && read -s storepw && echo && \
echo -n Key password: && read -s keypw && echo && \
./gradlew assembleRelease -Pkeystore_path='/home/twenty_one/keystore.properties.jks' -Pkeystore_pw=$storepw -Pkey_alias='key0' -Pkey_pw=$keypw