Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
xfqwdsj committed Apr 20, 2024
1 parent 7803a22 commit d448f24
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion compose-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* with Fhraise. If not, see <https://www.gnu.org/licenses/>.
*/

import org.gradle.jvm.tasks.Jar
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
Expand Down Expand Up @@ -121,6 +122,10 @@ kotlin {
implementation(compose.desktop.currentOs)
implementation(libs.logback)
}

tasks.withType<Jar> {
exclude("META-INF/*.RSA", "META-INF/*.SF", "META-INF/*.DSA")
}
}

val wasmJsMain by getting {
Expand Down Expand Up @@ -194,6 +199,7 @@ android {
abi {
isEnable = true
isUniversalApk = true
include("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
}
}
}
Expand Down Expand Up @@ -234,7 +240,7 @@ compose.desktop {
buildTypes {
release {
proguard {
version = "7.4.1"
version = "7.4.2"
configurationFiles.from("compose-desktop.pro")
optimize = false
}
Expand Down

0 comments on commit d448f24

Please sign in to comment.