3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Android】KotlinでRealm利用時の"Cannot inherit from final class"エラー対処法

Posted at

結論

RealmObjectを継承したクラスにopen修飾子をつける。

環境

Kotlin: 1.1.4-3
Realm: 3.5.0

エラー内容

Error:(33, 85) error: cannot inherit from final Foo

サンプルコード

:no_good: コンパイルエラー

class Foo: RealmObject() {
    var id: Long = 0
}

:ok_woman: OK

open class Foo: RealmObject() {
    var id: Long = 0
}

原因

Realmがコンパイル時に生成するProxyクラスがRealmObjectを継承したFooクラスを継承するため。
/app/build/generated/source/kapt/debug/io/realm/FooRealmProxy.javaのクラス宣言部分

public class FooRealmProxy extends rkowase.sample.Foo
    implements RealmObjectProxy, FooRealmProxyInterface {

参考

Realm Java 3.5.0
https://realm.io/jp/docs/java/latest/

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?