5
1

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.

Kotlin+Realmで*** is not part of the schema for this Realm問題にハマった

Last updated at Posted at 2016-06-02

こんにちは@u_nation です。

タイトルの通り、IllegalArgumentException: *** is not part of the schema for this Realm というエラーに悩まされていました。

原因は単純なもので_build.gradle_の設定で

apply plugin: 'realm-android'
apply plugin: 'kotlin-android'

としていたのですが、正しくは

apply plugin: 'kotlin-android'
apply plugin: 'realm-android'

の順番でした。gradle力の低い私にはpluginの順番が影響するとは知りませんでした。。

realm-javaのkotlin exampleでは正しい順番で書かれているので私のようなミスに陥る人は皆無だとは思いますが、
一応Realmの中の人にSlackで報告したところドキュメントに追加してくれるとのことでした(>_<)

同じようなエラーでハマっている方の助けになれば幸いです。以上です。

5
1
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
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?