Migrate app to native Kotlin
android-release / build (push) Successful in 3m5s

This commit is contained in:
Space-Banane
2026-07-06 13:49:22 +02:00
parent 81e351aa38
commit 3d6548d77d
86 changed files with 2247 additions and 13199 deletions
Vendored Executable
+23
View File
@@ -0,0 +1,23 @@
#!/bin/sh
# Copyright 2015-2021 the original authors.
# Licensed under the Apache License, Version 2.0.
APP_HOME=${0%/*}
[ "$APP_HOME" = "$0" ] && APP_HOME=.
APP_HOME=$(cd "$APP_HOME" >/dev/null && pwd -P) || exit
APP_BASE_NAME=${0##*/}
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
if [ -n "$JAVA_HOME" ]; then
JAVACMD=$JAVA_HOME/bin/java
else
JAVACMD=java
fi
if ! command -v "$JAVACMD" >/dev/null 2>&1 && [ ! -x "$JAVACMD" ]; then
echo "ERROR: Java is not available. Set JAVA_HOME to a JDK 17 installation." >&2
exit 1
fi
exec "$JAVACMD" "-Xmx64m" "-Xms64m" "-Dorg.gradle.appname=$APP_BASE_NAME" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"