Add dependency checksums and signing key information

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2024-01-28 21:26:21 +01:00
parent c52bce4b24
commit 93f9de72db
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
5 changed files with 14282 additions and 1 deletions

1
.gitignore vendored
View File

@ -54,3 +54,4 @@ fastlane/Fastfile
# python
**/__pycache__/
/gradle/verification-keyring.gpg

View File

@ -11,6 +11,7 @@ android.nonFinalResIds=false
# JVM arguments to optimize heap usage, enable heap dump on out-of-memory errors, and set the file encoding
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.dependency.verification.console=verbose
kotlin.daemon.jvmargs=-Xmx4096m
org.gradle.caching=true
org.gradle.parallel=true

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ if [ -z "$PR_NUMBER" ] ; then
fi
export BRANCH=$(scripts/analysis/getBranchBase.sh "$PR_NUMBER" | sed 's/"//g')
if [ "$(git diff --name-only "origin/$BRANCH" | grep -cE "^app/src|screenshots|build.gradle|.drone.yml")" -eq 0 ] ; then
if [ "$(git diff --name-only "origin/$BRANCH" | grep -cE "^app/src|screenshots|build.gradle|.drone.yml|gradle")" -eq 0 ] ; then
echo "No source files changed"
exit 1
else