updated java version
Some checks failed
Test setup and build APKs archlinux / Build-APK-Arch-Linux (push) Failing after 9m48s
Test setup and build APKs / Build-and-Create-Development-Environment (push) Successful in 12s

This commit is contained in:
2025-12-10 11:59:06 +01:00
parent 27ba868374
commit a38893f5a3
3 changed files with 8 additions and 7 deletions

View File

@@ -37,7 +37,8 @@ jobs:
- name: Build APKs release - name: Build APKs release
run: | run: |
# Run this command from your project root: find . -name "build" -type d -exec rm -rf {} +
rm -rf ~/.gradle/caches/
rm -rf /workspace/Fast/apk/src/**/app/build/kotlin rm -rf /workspace/Fast/apk/src/**/app/build/kotlin
./build.sh clean ./build.sh clean

View File

@@ -17,7 +17,7 @@ export PATH="${PATH}:${ANDROID_HOME}/platform-tools"
if [ "$1" == "clean" ]; then if [ "$1" == "clean" ]; then
BUILD_MODE="clean build" BUILD_MODE="clean assembleRelease"
BUILD_LOGGING="" BUILD_LOGGING=""
else else
BUILD_MODE="assembleDebug" BUILD_MODE="assembleDebug"

View File

@@ -1,10 +1,10 @@
plugins { plugins {
id 'com.android.application' id = 'com.android.application'
id 'org.jetbrains.kotlin.android' id = 'org.jetbrains.kotlin.android'
} }
android { android {
namespace 'com.example.FastAdmin' // Replace with your package name namespace = 'com.example.FastAdmin' // Replace with your package name
compileSdk = 34 // Use the latest stable SDK compileSdk = 34 // Use the latest stable SDK
defaultConfig { defaultConfig {
@@ -27,6 +27,6 @@ android {
dependencies { dependencies {
// Add necessary dependencies // Add necessary dependencies
implementation 'androidx.core:core-ktx:1.9.0' implementation = 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.1' implementation = 'androidx.appcompat:appcompat:1.6.1'
} }