10 lines
215 B
Kotlin
10 lines
215 B
Kotlin
package dev.meloda.overseerr
|
|
|
|
import android.os.Build
|
|
|
|
class AndroidPlatform : Platform {
|
|
override val name: String = "Android ${Build.VERSION.SDK_INT}"
|
|
}
|
|
|
|
actual fun getPlatform(): Platform = AndroidPlatform()
|