Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Technical: Import JvmField annotation for Multiplatform. #1107

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

package com.vanniktech.emoji

import kotlin.jvm.JvmField

data class EmojiInformation internal constructor(
@JvmField val isOnlyEmojis: Boolean,
@JvmField val emojis: List<EmojiRange>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

package com.vanniktech.emoji

import kotlin.jvm.JvmField

data class EmojiRange(
@JvmField val emoji: Emoji,
@JvmField val range: IntRange,
Expand Down
2 changes: 2 additions & 0 deletions emoji/src/commonMain/kotlin/com/vanniktech/emoji/Emojis.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

package com.vanniktech.emoji

import kotlin.jvm.JvmName

private val SPACE_REMOVAL = Regex("[\\s]")

internal const val VARIANT_SELECTOR_16 = ''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.vanniktech.emoji.search

import com.vanniktech.emoji.Emoji
import kotlin.jvm.JvmField

data class SearchEmojiResult(
@JvmField val emoji: Emoji,
Expand Down
Loading