feat(CON-166) : Mettre en place le projet

This commit is contained in:
2024-12-10 08:26:30 +01:00
parent a34877145a
commit 61ad631f28
57 changed files with 1271 additions and 1 deletions

BIN
keys/debug.keystore Normal file

Binary file not shown.

2
keys/droid-gen-debug-cert.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -storepass android -keypass android -keyalg RSA -validity 14000

8
keys/droid-gen-release-cert.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
if [ $# -lt 1 ]; then
echo "Usage: $0 alias"
exit 1
fi
keytool -genkey -v -keystore release.keystore -alias $1 -keyalg RSA -keysize 2048 -validity 10000

4
keys/keystore.properties Normal file
View File

@ -0,0 +1,4 @@
debugStoreFile=../keys/debug.keystore
releaseStoreFile=../keys/release.keystore
aliasRelease=openiumConsentium
passwordRelease=openiumConsentium

BIN
keys/release.keystore Normal file

Binary file not shown.