Add preparing navigation to roadmap

This commit is contained in:
2026-05-07 22:51:01 +02:00
parent 95bbeb57d2
commit f7e866a08d
27 changed files with 402 additions and 3629 deletions

View File

@@ -2,6 +2,7 @@ plugins {
// AGP must apply BEFORE recipe.kotlin.multiplatform — the latter calls androidTarget(),
// which requires the Android Gradle Plugin to already be on the project.
alias(libs.plugins.androidLibrary)
alias(libs.plugins.koin.compiler)
id("recipe.kotlin.multiplatform")
alias(libs.plugins.kotlinSerialization)
id("recipe.quality")
@@ -28,6 +29,10 @@ kotlin {
// re-declaring it.
api(libs.kotlinx.serializationJson)
}
commonTest.dependencies {
implementation(kotlin("test"))
}
}
}

View File

@@ -1,7 +0,0 @@
package dev.ulfrx.recipe
public class JVMPlatform : Platform {
override val name: String = "Java ${System.getProperty("java.version")}"
}
public actual fun getPlatform(): Platform = JVMPlatform()

View File

@@ -1,7 +0,0 @@
package dev.ulfrx.recipe
public class WasmPlatform : Platform {
override val name: String = "Web with Kotlin/Wasm"
}
public actual fun getPlatform(): Platform = WasmPlatform()