Parcelable: Use @IgnoredOnParcel annotation instead of Transient cause it's inapplicable on properties (KT-20298)
This commit is contained in:
Vendored
+3
-3
@@ -5,11 +5,11 @@ import android.os.Parcelable
|
||||
|
||||
@Parcelize
|
||||
class A(val firstName: String) : Parcelable {
|
||||
val <warning descr="[PROPERTY_WONT_BE_SERIALIZED] Property would not be serialized into a 'Parcel'. Add '@Transient' annotation to remove the warning">secondName</warning>: String = ""
|
||||
val <warning descr="[PROPERTY_WONT_BE_SERIALIZED] Property would not be serialized into a 'Parcel'. Add '@IgnoredOnParcel' annotation to remove the warning">secondName</warning>: String = ""
|
||||
|
||||
val <warning descr="[PROPERTY_WONT_BE_SERIALIZED] Property would not be serialized into a 'Parcel'. Add '@Transient' annotation to remove the warning">delegated</warning> by lazy { "" }
|
||||
val <warning descr="[PROPERTY_WONT_BE_SERIALIZED] Property would not be serialized into a 'Parcel'. Add '@IgnoredOnParcel' annotation to remove the warning">delegated</warning> by lazy { "" }
|
||||
|
||||
lateinit var <warning descr="[PROPERTY_WONT_BE_SERIALIZED] Property would not be serialized into a 'Parcel'. Add '@Transient' annotation to remove the warning">lateinit</warning>: String
|
||||
lateinit var <warning descr="[PROPERTY_WONT_BE_SERIALIZED] Property would not be serialized into a 'Parcel'. Add '@IgnoredOnParcel' annotation to remove the warning">lateinit</warning>: String
|
||||
|
||||
val customGetter: String
|
||||
get() = ""
|
||||
|
||||
+3
-4
@@ -1,5 +1,5 @@
|
||||
// "Annotate with ''@Parcelize''" "true"
|
||||
// ERROR: Class 'Foo' should be annotated with ''@Parcelize''
|
||||
// "Annotate containing class with ''@Parcelize''" "true"
|
||||
// ERROR: Class 'Foo' should be annotated with '@Parcelize'
|
||||
// WITH_RUNTIME
|
||||
|
||||
package com.myapp.activity
|
||||
@@ -13,5 +13,4 @@ object StringParceler : Parceler<String> {
|
||||
}
|
||||
|
||||
@Parcelize
|
||||
@TypeParceler<String, StringParceler>
|
||||
class Foo(<caret>val a: String) : Parcelable
|
||||
class Foo(@<caret>TypeParceler<String, StringParceler> val a: String)
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
// "Annotate containing class with ''@Parcelize''" "true"
|
||||
// ERROR: Class 'Foo' should be annotated with ''@Parcelize''
|
||||
// ERROR: Class 'Foo' should be annotated with '@Parcelize'
|
||||
// WITH_RUNTIME
|
||||
|
||||
package com.myapp.activity
|
||||
|
||||
+3
-2
@@ -1,13 +1,14 @@
|
||||
// "Add ''@Transient'' annotation" "true"
|
||||
// "Add ''@IgnoredOnParcel'' annotation" "true"
|
||||
// WITH_RUNTIME
|
||||
|
||||
package com.myapp.activity
|
||||
|
||||
import android.os.Parcelable
|
||||
import kotlinx.android.parcel.IgnoredOnParcel
|
||||
import kotlinx.android.parcel.Parcelize
|
||||
|
||||
@Parcelize
|
||||
class Test : Parcelable {
|
||||
@Transient
|
||||
@IgnoredOnParcel
|
||||
val <caret>a = 5
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Add ''@Transient'' annotation" "true"
|
||||
// "Add ''@IgnoredOnParcel'' annotation" "true"
|
||||
// WITH_RUNTIME
|
||||
|
||||
package com.myapp.activity
|
||||
|
||||
Reference in New Issue
Block a user