Skip to content

Commit

Permalink
#29 update kotlin and create @OptionalExpectation stub
Browse files Browse the repository at this point in the history
  • Loading branch information
anton6tak committed Jun 30, 2021
1 parent 2ef4387 commit 33f6b5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
classpath("dev.icerock:mobile-multiplatform:0.9.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20")
classpath("com.android.tools.build:gradle:4.2.1")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@

package dev.icerock.moko.parcelize

@OptIn(ExperimentalMultiplatform::class)
@OptionalExpectation
expect annotation class Parcelize()

expect interface Parcelable

@OptIn(ExperimentalMultiplatform::class)
@OptionalExpectation
expect annotation class IgnoredOnParcel()
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
package dev.icerock.moko.parcelize

actual interface Parcelable
actual annotation class IgnoredOnParcel
actual annotation class Parcelize

0 comments on commit 33f6b5c

Please sign in to comment.