Skip to content

Commit

Permalink
Add a local build setup
Browse files Browse the repository at this point in the history
to make "./gradlew build" work on a fresh clone, even if you don't
have the passwords for the official release key.
This will also enable any developer to test the release version of the
application.

When keys are not provided in squeezer.properties the app will be build
just like the official release version, but signed with a local release key
with password "squeezer" for the key and the keystore.
  • Loading branch information
kaaholst committed Dec 22, 2013
1 parent 14719d6 commit eb15880
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Squeezer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ android {
}
} else {
release {
storeFile file("keystore")
storePassword "fakeStorePassword"
storeFile file("squeezer-local-release-key.keystore")
storePassword "squeezer"
keyAlias "squeezer"
keyPassword "fakeKeyPassword"
keyPassword "squeezer"
}
}
}
Expand Down
Binary file added Squeezer/squeezer-local-release-key.keystore
Binary file not shown.

0 comments on commit eb15880

Please sign in to comment.