feat: more accurate loco matching

This commit is contained in:
Nedifinita
2025-09-05 23:22:47 +08:00
parent b609c52283
commit 222bbe55e5
13 changed files with 171 additions and 78 deletions

View File

@@ -25,8 +25,8 @@ if (flutterVersionName == null) {
android {
namespace = "org.noxylva.lbjconsole.flutter"
compileSdk = 35
ndkVersion = "25.1.8937393"
compileSdk = 36
ndkVersion = "26.1.10909125"
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
@@ -49,9 +49,9 @@ android {
signingConfigs {
release {
storeFile file("../../keystore.jks")
storePassword System.getenv("KEYSTORE_PASSWORD") ?: "android"
keyAlias System.getenv("KEY_ALIAS") ?: "androidkey"
keyPassword System.getenv("KEY_PASSWORD") ?: "android"
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
}
}