3 Commits

Author SHA1 Message Date
CherretGit
80abf2380a Merge pull request #25 from CherretGit/main
bump version and optimize libbyedpi
2025-12-08 23:16:54 +07:00
CherretGit
35b0068b8c optimize libbyedpi 2025-12-08 23:11:49 +07:00
cheesedroid
cdcd8b85b5 Update build.gradle.kts 2025-12-08 18:11:45 +03:00
2 changed files with 9 additions and 3 deletions

View File

@@ -16,8 +16,8 @@ android {
applicationId = "com.cherret.zaprett"
minSdk = 29
targetSdk = 35
versionCode = 24
versionName = "2.12"
versionCode = 25
versionName = "2.13"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
@@ -124,4 +124,4 @@ dependencies {
androidTestImplementation(libs.androidx.ui.test.junit4)
debugImplementation(libs.androidx.ui.tooling)
debugImplementation(libs.androidx.ui.test.manifest)
}
}

View File

@@ -15,3 +15,9 @@ crate-type = ["cdylib"]
[build-dependencies]
cmake = "0.1.49"
[profile.release]
opt-level = "z"
lto = true
strip = true
codegen-units = 1