Add preparing navigation to roadmap
This commit is contained in:
@@ -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"))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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()
|
||||
@@ -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()
|
||||
Reference in New Issue
Block a user