updated java version
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
2
build.sh
2
build.sh
@@ -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"
|
||||||
|
|||||||
@@ -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'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user