Split composeApp into shared (KMP library) and androidApp (Android application) modules to resolve KMP + AGP 9.0 incompatibility. Remove deprecated gradle properties and add performance optimization settings. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
9 lines
210 B
Kotlin
9 lines
210 B
Kotlin
package plus.rua.project
|
|
|
|
import android.os.Build
|
|
|
|
class AndroidPlatform : Platform {
|
|
override val name: String = "Android ${Build.VERSION.SDK_INT}"
|
|
}
|
|
|
|
actual fun getPlatform(): Platform = AndroidPlatform() |