Skip to content

Commit 0e08ec2

Browse files
committed
FIX CI: Test and Deploy Espresso test errors
1 parent 6d33612 commit 0e08ec2

5 files changed

Lines changed: 9 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![CI-MASTER](https://github.com/jarroyoesp/ComposeMultiplatformApp/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jarroyoesp/ComposeMultiplatformApp/actions/workflows/ci.yml)
22
[![Latest release](https://img.shields.io/github/v/release/JetBrains/compose-multiplatform?color=blue&label=Compose%20multiplatform)](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.10.1)
3-
![Kotlin Version](https://img.shields.io/badge/Kotlin-2.3.10-blue?logo=kotlin&logoColor=white)
3+
![Kotlin Version](https://img.shields.io/badge/Kotlin-2.3.20-blue?logo=kotlin&logoColor=white)
44
<div align="center">
55
<img alt="Compose multiplatform charts" src="./screenshots/compose_multiplatform_logo.png"/>
66
<h1>🚀 Example project to show SpaceX data built with Kotlin Multiplatform and Compose UI Multiplatform</h1>
1 Byte
Binary file not shown.

build-conventions/src/main/kotlin/composeapp.android-app-conventions.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import com.android.build.api.dsl.LibraryExtension
1+
import com.android.build.api.dsl.ApplicationExtension
22
import com.jarroyo.composeapp.gmd.configureGradleManagedDevices
33
import com.mikepenz.aboutlibraries.plugin.DuplicateMode
44
import com.mikepenz.aboutlibraries.plugin.DuplicateRule
@@ -21,8 +21,8 @@ plugins {
2121

2222
val libs = the<LibrariesForLibs>()
2323

24-
plugins.withId("com.android.library") {
25-
extensions.configure<LibraryExtension> {
24+
plugins.withId("com.android.application") {
25+
extensions.configure<ApplicationExtension> {
2626

2727
buildFeatures {
2828
compose = true

desktop/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ compose.desktop {
2626
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
2727
packageName = "desktop"
2828
packageVersion = "1.0.0"
29+
modules(
30+
"java.sql", // required by Firebase JVM & SQLDelight JDBC drivers
31+
"java.naming", // required by Firebase/Firestore internals
32+
"java.net.http", // required by Ktor/OkHttp HTTP client
33+
)
2934
}
3035
}
3136
}
Binary file not shown.

0 commit comments

Comments
 (0)