Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ android {
"proguard-rules.pro"
)

// Apply signing config if available
if (signingConfigs.getByName("release").storeFile != null) {
// Apply signing config if available and file exists
val releaseStoreFile = signingConfigs.getByName("release").storeFile
if (releaseStoreFile != null && releaseStoreFile.exists()) {
signingConfig = signingConfigs.getByName("release")
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android.nonTransitiveRClass=true
kotlin.code.style=official
# Project Configuration
project.name=RemoteMate
project.android.compileSdk=36
project.android.compileSdk=35
project.android.minSdk=29
project.android.targetSdk=35
project.app.packageName=io.github.lazulikao.remotemate
Expand Down
18 changes: 9 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
agp = "8.13.1"
kotlin = "2.2.21"
ksp = "2.2.21-2.0.4"
agp = "8.7.3"
kotlin = "2.0.21"
ksp = "2.0.21-1.0.28"
rovo89-xposed-api = "82"
yukihookapi = "1.3.1"
kavaref-core = "1.0.2"
Expand All @@ -18,13 +18,13 @@ betterandroid-system-extension = "1.0.3"
dexkit = "2.0.7"
drawabletoolbox = "1.0.7"
okhttp = "5.3.0"
androidx-core-ktx = "1.17.0"
androidx-appcompat = "1.7.1"
material = "1.13.0"
androidx-constraintlayout = "2.2.1"
androidx-core-ktx = "1.15.0"
androidx-appcompat = "1.7.0"
material = "1.12.0"
androidx-constraintlayout = "2.2.0"
junit = "4.13.2"
androidx-test-junit = "1.3.0"
androidx-test-espresso-core = "3.7.0"
androidx-test-junit = "1.2.1"
androidx-test-espresso-core = "3.6.1"

[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
Expand Down
Loading