- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 Kotlin 多平台应用程序,我想在我的模型类中使用 @Parcelize 注释。但是在 Kotlin Multiplatform 插件中,@Parcelize 注释在我使用的 kotlin 版本中是在 android.extensions 插件中,它适用于 androidApp 模块。
关于我的 build.gradle.kts(androidApp)
plugins {
id("com.android.application")
kotlin("android")
kotlin("android.extensions")
kotlin("kapt")
id("kotlinx-serialization")
id("androidx.navigation.safeargs.kotlin")
}
android {
compileSdkVersion(Versions.compileSdk)
compileOptions{
sourceCompatibility = org.gradle.api.JavaVersion.VERSION_1_8
targetCompatibility = org.gradle.api.JavaVersion.VERSION_1_8
}
kotlinOptions{
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
kapt{
generateStubs = true
correctErrorTypes = true
}
androidExtensions{
isExperimental = true
}
buildFeatures{
dataBinding = true
viewBinding = true
}
defaultConfig {
applicationId = "com.jshvarts.kmp.android"
minSdkVersion(Versions.minSdk)
targetSdkVersion(Versions.targetSdk)
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
}
}
packagingOptions {
exclude("META-INF/*.kotlin_module")
}
}
dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
implementation(kotlin("stdlib-jdk8", Versions.kotlin))
implementation(Coroutines.android)
implementation(AndroidX.appCompat)
implementation(AndroidX.constraintLayout)
implementation(AndroidX.recyclerView)
implementation(AndroidX.lifecycleExtensions)
implementation(AndroidX.lifecycleViewModelKtx)
implementation(material)
implementation(AndroidX.swipeToRefreshLayout)
implementation(timber)
implementation(picasso)
implementation(AndroidX.navigation)
implementation(AndroidX.navigation_ui)
implementation(Serialization.runtime)
//implementation(Serialization.core)
//Dependency for googlePay
implementation("com.google.android.gms:play-services-wallet:16.0.1")
kapt(databinding)
implementation(glide){
exclude( "com.android.support")
}
kapt(glide)
implementation(project(":shared"))
}
build.gradle.kts(共享)
plugins {
id("com.android.library")
kotlin("multiplatform")
kotlin("plugin.serialization")
//id("kotlinx-serialization")
id("org.jetbrains.kotlin.native.cocoapods")
id("com.squareup.sqldelight")
}
// CocoaPods requires the podspec to have a version.
version = "1.0"
android {
compileSdkVersion(Versions.compileSdk)
buildToolsVersion(Versions.androidBuildTools)
defaultConfig {
minSdkVersion(Versions.minSdk)
targetSdkVersion(Versions.targetSdk)
versionCode = 1
versionName = "1.0"
}
}
version = "1.0"
dependencies {
implementation("com.google.firebase:firebase-crashlytics-buildtools:2.8.1")
implementation(project(mapOf("path" to ":androidApp")))
}
kotlin {
targets {
val sdkName: String? = System.getenv("SDK_NAME")
val isiOSDevice = sdkName.orEmpty().startsWith("iphoneos")
if (isiOSDevice) {
iosArm64("iOS")
} else {
iosX64("iOS")
}
android()
}
cocoapods {
// Configure fields required by CocoaPods.
summary = "Description for a Kotlin/Native module"
homepage = "Link to a Kotlin/Native module homepage"
}
sourceSets {
all {
languageSettings.apply {
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
}
}
val commonMain by getting {
dependencies {
implementation(kotlin("stdlib-common"))
implementation(Coroutines.Core.core)
implementation(Ktor.Core.common)
implementation(Ktor.Json.common)
implementation(Ktor.Logging.common)
implementation(Ktor.Serialization.common)
implementation(SqlDelight.runtime)
implementation(Serialization.runtime)
//implementation(project(":androidApp"))
//implementation("org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlin}")
//implementation("org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlin}")
//implementation ("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1")
}
}
val commonTest by getting {
dependencies {
implementation(Ktor.Mock.jvm)
}
}
val androidMain by getting {
dependencies {
implementation(kotlin("stdlib"))
implementation(Coroutines.Core.core)
implementation(Ktor.android)
implementation(Ktor.Core.jvm)
implementation(Ktor.Json.jvm)
implementation(Ktor.Logging.jvm)
implementation(Ktor.Logging.slf4j)
implementation(Ktor.Mock.jvm)
implementation(Ktor.Serialization.jvm)
implementation(Serialization.runtime)
//implementation(Serialization.core)
implementation(SqlDelight.android)
}
}
val androidTest by getting {
dependencies {
implementation(kotlin("test-junit"))
implementation(Ktor.Mock.common)
}
}
val iOSMain by getting {
dependencies {
implementation(Coroutines.Core.core)
implementation(Ktor.ios)
implementation(Ktor.Core.common)
implementation(Ktor.Json.common)
implementation(Ktor.Logging.common)
implementation(Ktor.Serialization.jvm)
// implementation(Serialization.runtimeNative)
implementation(SqlDelight.runtime)
implementation(Ktor.Mock.common)
}
}
val iOSTest by getting {
dependencies {
implementation(Ktor.Mock.native)
}
}
}
}
sqldelight {
database("PetsDatabase") {
packageName = "com.jshvarts.kmp.db"
sourceFolders = listOf("sqldelight")
}
}
还有我的项目build.gradle.kts
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:4.0.0")
classpath(kotlin("gradle-plugin", version = Versions.kotlin))
classpath(kotlin("serialization", version = Versions.kotlin))
classpath("com.squareup.sqldelight:gradle-plugin:${Versions.sqldelight}")
classpath("com.github.ben-manes:gradle-versions-plugin:0.28.0")
classpath ("androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.navigation}")
classpath ("org.jetbrains.kotlin:kotlin-android-extensions-runtime:${Versions.kotlin}")
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
//TODO("Probar bajando a kotlin version 1.3.72, y habilitando el android-extensions")
plugins {
//kotlin("jvm") version "${Versions.kotlin}"
id("org.jlleitschuh.gradle.ktlint") version "9.2.1"
id ("com.github.ben-manes.versions") version "0.28.0"
//kotlin("android") version "${Versions.kotlin}" apply false
//id("org.jetbrains.kotlin.plugin.parcelize") version "${Versions.kotlin}"
}
apply(from = "quality/lint.gradle")
所以我在 androidApp 和共享模块中创建了一个期望的和实际的 Parcelable 和 Parcelize 类:
androidApp
actual typealias Parcelable = android.os.Parcelable
actual typealias Parcelize = kotlinx.android.parcel.Parcelize
在共享模块中
// Common Code
expect interface Parcelable
@UseExperimental(ExperimentalMultiplatform::class)
@OptionalExpectation
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.BINARY)
expect annotation class Parcelize()
所以在那些类中我收到以下错误:
In Parcelable(shared)
Expected interface 'Parcelable' has no actual declaration in module KmpMVVMGooglePay.shared for JVM
Expected interface 'Parcelable' has no actual declaration in module KmpMVVMGooglePay.shared.iOSMain for Native
在android类中:
Actual typealias 'Parcelable' has no corresponding expected declaration
Actual typealias 'Parcelize' has no corresponding expected declaration
那么我缺少关于实际/预期关键字行为的什么?
提前感谢您的帮助!
最佳答案
这些 fragment 向您展示了如何在 KMM 项目中为任何类型的类(包括原语)使用 Android Parcelable
。它展示了注释、接口(interface)、泛型、对象、@TypeParceler
、Parceler
、Parcelable
、Parcelize
、以及如何实现通用代码、iOS 和 Android 的各个平台。
当 Android 应用进入后台并且 Parceler 自动运行以保存状态时,这是防止崩溃所必需的代码。
在这个例子中,我想要的是 LocalDateTime 的非 native 可分包类作为示例非 native 可分包类。您可以使用任何类,只需更改实现即可。
在 build.gradle.kts
(:shared)
plugins {
kotlin("multiplatform")
id("com.android.library")
id("kotlin-parcelize") // add this
id("kotlin-kapt") // add this
// ...rest of defintions...
}
kotlin {
android()
listOf(
iosX64(),
iosArm64(),
iosSimulatorArm64()
).forEach {
it.binaries.framework {
baseName = "shared"
}
}
sourceSets {
val commonMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0") // LocalDateTime library written in Kotlin (can't use java libraries)
}
}
// ...rest of definitions...
}
// ...rest of definitions...
}
在 commonMain/.../Platform.kt
import kotlinx.datetime.LocalDateTime
// For Android @Parcelize
@OptIn(ExperimentalMultiplatform::class)
@OptionalExpectation
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.BINARY)
expect annotation class CommonParcelize()
// For Android Parcelable
expect interface CommonParcelable
// For Android @TypeParceler
@OptIn(ExperimentalMultiplatform::class)
@OptionalExpectation
@Retention(AnnotationRetention.SOURCE)
@Repeatable
@Target(AnnotationTarget.CLASS, AnnotationTarget.PROPERTY)
expect annotation class CommonTypeParceler<T, P : CommonParceler<in T>>()
// For Android Parceler
expect interface CommonParceler<T>
// For Android @TypeParceler to convert LocalDateTime to Parcel
expect object LocalDateTimeParceler: CommonParceler<LocalDateTime>
在 androidMain/.../Platform.kt
重要提示:必须导入 kotlinx.parcelize.*
NOT kotlinx.android.parcel.*
import android.os.Parcel
import android.os.Parcelable
import kotlinx.datetime.LocalDateTime
import kotlinx.datetime.toLocalDateTime
import kotlinx.parcelize.Parceler
import kotlinx.parcelize.Parcelize
import kotlinx.parcelize.TypeParceler
actual typealias CommonParcelize = Parcelize
actual typealias CommonParcelable = Parcelable
actual typealias CommonParceler<T> = Parceler<T>
actual typealias CommonTypeParceler<T,P> = TypeParceler<T, P>
actual object LocalDateTimeParceler : Parceler<LocalDateTime> {
override fun create(parcel: Parcel): LocalDateTime {
val date = parcel.readString()
return date?.toLocalDateTime()
?: LocalDateTime(0, 0, 0, 0, 0)
}
override fun LocalDateTime.write(parcel: Parcel, flags: Int) {
parcel.writeString(this.toString())
}
}
在 iosMain/.../Platform.kt
import kotlinx.datetime.LocalDateTime
// Note: no need to define CommonParcelize here (bc its @OptionalExpectation)
actual interface CommonParcelable // not used on iOS
// Note: no need to define CommonTypeParceler<T,P : CommonParceler<in T>> here (bc its @OptionalExpectation)
actual interface CommonParceler<T> // not used on iOS
actual object LocalDateTimeParceler : CommonParceler<LocalDateTime> // not used on iOS
在 ../shared/commonMain/.../domain/note/Note.kt
这是您的域类,将由 iOS 和 Android 共享
import kotlinx.datetime.LocalDateTime
@CommonParcelize
data class Note(
val id: Long?,
val title: String,
val content: String,
val colorHex: Long,
@CommonTypeParceler<LocalDateTime, LocalDateTimeParceler>()
val created: LocalDateTime,
): CommonParcelable {
companion object {
private val colors = listOf(RedOrangeHex, RedPinkHex, LightGreenHex, BabyBlueHex, VioletHex)
fun generateRandomColor() = colors.random()
}
}
我尝试实现 @RawValue
但它没有记录(AFAIK)并且上述使用 @TypeParcelers
的方法对任何特定类都非常有效。我把它留给其他人作为练习!
关于android - Kotlin Multiplatform Project的共享模块中如何使用@Parcelize注解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70916976/
我正在 kotlin 多平台上创建我的第一个应用程序,并且需要获取一些设备的信息,例如语言和国家/地区。 我正在寻找一种使用 Kotlin 多平台在 Android 和 iOS 两种设备上运行的方法。
我正在写一篇关于多平台编程的论文,我想包括关于优点/缺点的部分。据我了解;让任何应用程序成为多平台对于开发人员来说是一个巨大的卖点,因为它使几乎任何计算机用户都成为潜在的买家等等。我只是想找出可能的缺
我想知道多平台应用程序是如何开发的。适用于 MAC/Windows 的 Microsoft Office、适用于 MAC/Windows/Linux 的 FireFox 等应用程序。 如果他们必须为不
我找不到任何关于如何在 Kotlin Multiplatform 中获取 CPointer 的示例,现有的文档也没有多大帮助。在我的 iOS 源集中,我需要构建与以下 Swift 代码等效的 Kotl
我正在寻找一个返回特定于平台的换行字符串的函数。这可以使用 System.lineSeparator() 实现,但它仅在 Kotlin/JVM 中可用。有没有跨平台的功能? 我知道 expect/ac
我正在开发一个 Kotlin 多平台应用程序,我想在我的模型类中使用 @Parcelize 注释。但是在 Kotlin Multiplatform 插件中,@Parcelize 注释在我使用的 kot
我想在我正在编写的 kotlin 多平台库中使用 jetbrains 公开库。我该怎么做呢?我收到一个 gradle 构建错误,它无法找到它需要公开的所有内容。这是我的 gradle 构建 sourc
最近我将我的 KMP 项目拆分为全栈项目和一个核心库(主要由公共(public)数据类组成),发现我需要在现在定义的其中一个数据类上使用 JVM 库中的注释在一个公共(public)模块中。 在 Ko
我尝试为所有类型为 Test 的任务设置以下内容如下: tasks.withType { testLogging { exceptionFormat = TestExcepti
到目前为止,我找不到任何人这样做,所以我会尝试正确说明我面临的问题。 我有一个 compose-ui shared module 中的模块我的 KMP 应用程序。 compose-ui有一个 comm
我正在 Kotlin-Multiplatform 中开始一个项目。通过Java访问资源文件夹很容易,但我不知道如何通过针对Node的JS访问它。 在测试过程中,我发现资源文件存储在一个单独的文件夹中。
我试图使用ShadowJar gradle插件将我的ktor应用打包到胖 jar 中。但是由于shadowJar任务的结果,我每次都会得到几乎空的jar。它仅包含 list (正确设置了主类)。 Gr
以前,使用 Gradle 构建多平台项目依赖于每个目标平台的单独 Gradle 插件:kotlin-platform-common , kotlin-platform-js , 和 kotlin-pl
我正在开发一个多平台项目,iOS 和 JVM(我不直接针对 Android)。根据构建类型(调试或发布),我想配置日志记录级别(即仅打印发布中的错误)。由于没有可用的 BuildConfig 类,我如
现在我正在尝试创建一个连接到 facebook 的多平台应用程序。 我已经通过网络应用程序成功发送邀请并发布到时间线,现在我正计划通过 android 和 iOS 应用程序发布到时间线并在 faceb
我想使用 Coil 图像库从 api 加载图像,并使用之前设置的相同 cookie。因此,我想对我的 Ktor 网络调用和使用 Coil 加载图像使用相同的 HttpClient。 如何在 Ktor
我正在开发一个 KMM 项目,我需要为我的项目创建不同的架构,例如(开发、生产、QA)我可以在 android 部分轻松完成,但我无法在 iOS 中创建相同的架构。我尝试创建我们通常在 iOS 应用程
我创建了一个非常简单的 KMP 项目,其结构如下: -Root --app --gradle --SharedCode --src\commonMain\kotlin\actual.kt
我正在尝试使用新的 Kotlin MultiPlatform 设置发布一个 Android 库(调试/发布)。我能够成功发布 iOS 框架,但不能发布 android 库。这是我最终得到的错误: 配置
我遵循了教程 https://kotlinlang.org/docs/tutorials/native/mpp-ios-android.html ,然后我成功创建了androidmain,iosmai
我是一名优秀的程序员,十分优秀!