2025-09-17 11:31:16 -03:00
|
|
|
package dev.carlosmartino.triplogic
|
|
|
|
|
|
|
|
|
|
import android.os.Build
|
|
|
|
|
|
|
|
|
|
class AndroidPlatform : Platform {
|
|
|
|
|
override val name: String = "Android ${Build.VERSION.SDK_INT}"
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-17 14:25:27 -03:00
|
|
|
actual fun getPlatform(): Platform = AndroidPlatform()
|