When enable proguard then checks in my code are not working correctly. For example I have class:
class SomeData implements Parcelable
From kotlin code I check whether the passed object is SomeData (data is SomeData
) . But the check returns me false, this not correct.
Perhaps I should add some rule to avoid this? Please help me.